Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBatdorf committed Sep 29, 2024
1 parent 7ff7376 commit 4503258
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

19 changes: 10 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
"browser": true,
"es2021": true,
"jest": true,
"node": true
"node": true,
},
"ignores": ["node_modules/*", "build/*"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
Expand All @@ -13,12 +14,12 @@
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:cypress/recommended",
"prettier"
"prettier",
],
"parserOptions": {
"ecmaFeatures": { "jsx": true },
"sourceType": "module",
"allowImportExportEverywhere": true
"allowImportExportEverywhere": true,
},
"ignorePatterns": ["node_modules/", "pkg/", "build/"],
"parser": "@typescript-eslint/parser",
Expand All @@ -40,8 +41,8 @@
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
"asyncArrow": "always",
},
],
"react/react-in-jsx-scope": "off",
"quote-props": ["error", "as-needed"],
Expand All @@ -51,9 +52,9 @@
"error",
{
"beforeBlockComment": true,
"allowBlockStart": true
}
]
"allowBlockStart": true,
},
],
},
"settings": { "react": { "version": "detect" } }
"settings": { "react": { "version": "detect" } },
}

0 comments on commit 4503258

Please sign in to comment.