-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
93 lines (93 loc) · 2.32 KB
/
.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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"extends": [
"plugin:prettier/recommended",
"prettier",
"kentcdodds",
"kentcdodds/react",
"kentcdodds/jsx-a11y",
"plugin:@next/next/recommended"
],
"plugins": ["prettier"],
"rules": {
"camelcase": "off",
"dot-notation": "off",
"jsx-a11y/control-has-associated-label": "off",
"react/jsx-closing-tag-location": "off",
"react/jsx-curly-brace-presence": "off",
"react/jsx-filename-extension": [
"error",
{
"extensions": [".js", ".jsx", ".tsx"]
}
],
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off",
"react/prop-types": "off",
"@babel/new-cap": "off",
"@typescript-eslint/no-explicit-any": "warn",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"mjs": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"no-undef": "off",
"no-unused-vars": "off",
"no-use-before-define": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/explicit-module-boundary-types": ["off"],
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-use-before-define": "warn",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@next/next/no-img-element": "off",
"import/newline-after-import": "warn",
"import/no-extraneous-dependencies": "warn",
"import/order": "off",
"jsx-a11y/anchor-is-valid": "off",
"sort-imports": "off",
"jsx-a11y/accessible-emoji": "off",
"react/jsx-sort-props": [
"warn",
{
"reservedFirst": ["key"]
}
],
"react/react-in-jsx-scope": ["off"],
"@babel/no-unused-expressions": 0
},
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true,
"jsx": true
}
},
"settings": {
"import/resolver": {
"typescript": "./tsconfig.json"
}
},
"overrides": [
{
"files": ["**/*.(d.)?ts(x)?"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {}
}
]
}