-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy path.eslintrc.json
More file actions
31 lines (31 loc) · 777 Bytes
/
Copy path.eslintrc.json
File metadata and controls
31 lines (31 loc) · 777 Bytes
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
{
"extends": ["next/core-web-vitals", "airbnb-base"],
"rules":{
"linebreak-style": 0,
"indent":"off",
"no-undef":"off",
"no-console": "off",
"camelcase":"off",
"object-curly-newline":"off",
"no-use-before-define": "off",
"no-restricted-syntax": "off",
"no-await-in-loop": "off",
"arrow-body-style":"off",
"max-len": ["error", {"code": 150, "ignoreComments": true, "ignoreUrls": true}],
"import/no-extraneous-dependencies": "off",
"no-unused-vars": "off",
"implicit-arrow-linebreak": "off",
"function-paren-newline": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"": "never",
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
]
}
}