forked from martpie/museeks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
27 lines (27 loc) · 884 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"parserOptions": { "parser": "@typescript-eslint/parser" },
"plugins": ["@typescript-eslint", "jsx-a11y", "import"],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:jsx-a11y/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:jsx-a11y/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"settings": { "react": { "version": "detect" } },
"env": { "jest": true },
"rules": {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"import/order": "error",
"import/named": "off",
"import/default": "off",
"spaced-comment": ["error", "always"]
},
"globals": { "describe": true }
}