-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.eslintrc.json
More file actions
70 lines (70 loc) · 1.36 KB
/
Copy path.eslintrc.json
File metadata and controls
70 lines (70 loc) · 1.36 KB
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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"next/core-web-vitals",
"airbnb",
"airbnb-typescript"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"ignorePatterns": [
"next.config.js",
"postcss.config.js",
"tailwind.config.js",
"jest.config.js"
],
"rules": {
"react/no-unescaped-entities": "warn",
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"no-plusplus": 0,
"quotes": [
"error",
"single"
],
"max-len": [
"error",
140,
2,
{
"ignoreComments": true,
"ignoreUrls": true
}
],
"react/require-default-props": "off",
"react/function-component-definition": "off",
"react/prop-types": "off",
"react/jsx-no-useless-fragment": "off",
"react/jsx-props-no-spreading": "off",
"jsx-a11y/media-has-caption": "off",
"react/jsx-filename-extension": "off",
"react/react-in-jsx-scope": "off",
"linebreak-style": [
"error",
"unix"
],
"allowImportingTsExtensions": 0,
"object-curly-spacing": [
2,
"always"
],
"operator-linebreak": "off",
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"@next/next/no-img-element": "off"
}
}