-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
35 lines (35 loc) · 971 Bytes
/
Copy path.eslintrc.json
File metadata and controls
35 lines (35 loc) · 971 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
32
33
34
35
{
"extends": ["airbnb", "airbnb-typescript", "plugin:jsx-a11y/strict", "next/core-web-vitals", "prettier"],
"plugins": ["import", "@typescript-eslint"],
"parserOptions": {
"parser": "@typescript-eslint/parser",
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/consistent-type-imports": "error",
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"import/order": [
"error",
{
"pathGroups": [
{
"pattern": "~**",
"group": "internal"
},
{
"pattern": "~*/**",
"group": "internal"
}
],
"groups": ["external", "internal", "parent", "sibling"],
"newlines-between": "always",
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
],
"import/prefer-default-export": "off",
"react/jsx-props-no-spreading": "off"
}
}