-
-
Notifications
You must be signed in to change notification settings - Fork 319
/
.eslintrc.json
34 lines (34 loc) · 856 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
{
"parserOptions": {
"ecmaVersion": "latest"
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "sort-imports-es6-autofix"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-empty-function": "off",
"max-len": "off",
"no-empty": "off",
"jsx-a11y/alt-text": 0,
"react-hooks/exhaustive-deps": 0,
"sort-imports-es6-autofix/sort-imports-es6": [
1,
{
"ignoreCase": true,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "single", "multiple"]
}
]
}
}