-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
65 lines (64 loc) · 1.89 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"]
{
"env": {
"es6": true
},
"plugins": ["testing-library", "@typescript-eslint"],
"extends": [
"next",
"prettier",
"eslint:recommended",
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"rules": {
"camelcase": ["error", { "properties": "never" }],
"comma-dangle": ["error", "always-multiline"],
"curly": "error",
"dot-notation": ["error"],
"eqeqeq": ["error"],
"func-style": ["error", "declaration"],
"no-else-return": ["error", { "allowElseIf": false }],
"no-multiple-empty-lines": ["error", { "max": 1, "maxEOF": 0 }],
"no-trailing-spaces": ["error"],
"no-useless-constructor": ["error"],
"object-curly-spacing": ["error", "always"],
"object-shorthand": ["error"],
"prefer-const": ["error"],
"prefer-template": "error",
"react/no-unused-prop-types": ["error", { "skipShapeProps": true }],
"react/prop-types": ["error", { "ignore": ["children"] }],
"react/self-closing-comp": [
"error",
{
"component": true,
"html": true
}
],
"react-hooks/exhaustive-deps": "off",
"semi": ["error", "always"],
"space-before-blocks": ["error", "always"],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"testing-library/await-async-queries": "error",
"testing-library/no-debugging-utils": "warn",
"testing-library/no-dom-import": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
]
}
}