-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
39 lines (38 loc) · 1.01 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
{
"extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended", "prettier"],
"plugins": ["@typescript-eslint", "import"],
"rules": {
"quotes": ["error", "single"],
"max-len": [
"error",
{
"code": 120,
"ignoreUrls": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}
],
"import/order": [
"warn",
{
"groups": [["builtin", "external"], "internal", ["parent", "sibling", "index"]],
"alphabetize": {
"order": "asc",
"caseInsensitive": true
},
"newlines-between": "always"
}
],
// "prettier/prettier": "error", // Enforce Prettier's formatting rules
"prefer-const": "error",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "warn"
},
"parserOptions": {
"jsx": true,
"ecmaVersion": 2021,
"project": ["./tsconfig.json"],
"tsconfigRootDir": "./",
"parser": "@typescript-eslint/parser"
}
}