-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
40 lines (40 loc) · 938 Bytes
/
.eslintrc.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"next/core-web-vitals",
"plugin:cypress/recommended",
"plugin:sonarjs/recommended",
"plugin:typescript-sort-keys/recommended"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"project": true
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"react",
"react-hooks",
"simple-import-sort",
"typescript-sort-keys",
"cypress",
"sonarjs"
],
"rules": {
"import/no-anonymous-default-export": "off",
"simple-import-sort/exports": "error",
"simple-import-sort/imports": "error",
"@typescript-eslint/no-unsafe-call": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}