Skip to content

Commit

Permalink
chore: remove references to JSX in processes
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehenson committed Mar 20, 2024
1 parent 6c90806 commit b8023be
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ max_line_length = 80
[*.md]
trim_trailing_whitespace = false

[*.{css,html,js,jsx,json,rb,erb}]
[*.{css,html,js,json,rb,erb}]
charset = utf-8

[*.{html,jsx,erb,json}]
[*.{html,erb,json}]
max_line_length = 160
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
with:
eslint: true
eslint_dir: src
eslint_extensions: js,ts,jsx,tsx
eslint_extensions: js,ts,tsx
eslint_auto_fix: false
prettier: true
prettier_dir: src
prettier_extensions: js,ts,jsx,tsx
prettier_extensions: js,ts,tsx
prettier_auto_fix: false
# Cypress disabled until tests rewritten to use new SB paths
# - name: Cypress
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"overrides": [
{
"files": ["*.html", "*.jsx"],
"files": ["*.html"],
"options": {
"printWidth": 160,
"htmlWhitespaceSensitivity": "strict"
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
content: ["./src/**/*.{jsx,js,json,css,ts,tsx,mdx}"],
content: ["./src/**/*.{js,json,css,ts,tsx,mdx}"],
safelist: [
"w-1/2",
"w-1/3",
Expand Down

0 comments on commit b8023be

Please sign in to comment.