-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
42 lines (42 loc) · 1.11 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
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended"],
"rules": {
"@typescript-eslint/consistent-type-imports": "warn",
"semi": ["error", "always"],
"quotes": ["error", "double"],
"no-tabs": "off",
"no-multi-spaces": "warn",
"indent": [
"warn",
"tab",
{
"SwitchCase": 1
}
],
"arrow-parens": ["error", "as-needed"],
"react/jsx-indent": ["error", "tab"],
"react/jsx-indent-props": ["error", "tab"],
"no-underscore-dangle": "off",
"camelcase": "off",
"import/no-unresolved": [
2,
{
"ignore": ["^common-util", "css-util", "components", "helpers", "^store", "util"]
}
],
"react/no-array-index-key": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-one-expression-per-line": "off",
"jsx-a11y/html-has-lang": "off",
"jsx-a11y/alt-text": "warn",
"jsx-a11y/mouse-events-have-key-events": "off",
"jsx-a11y/media-has-caption": "off",
"jsx-a11y/anchor-is-valid": "off",
"global-require": 0
}
}