forked from InSTinToS/Grafos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1.09 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
43
{
"extends": [
"next/core-web-vitals",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["unused-imports"],
"rules": {
"semi": "off",
"curly": "off",
"jsx-quotes": "off",
"comma-dangle": "off",
"no-unused-vars": "off",
"react/react-in-jsx-scope": "off",
"prettier/prettier": "warn",
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/no-explicit-any": "off",
"@next/next/no-html-link-for-pages": "off",
"@typescript-eslint/no-empty-function": "off",
"unused-imports/no-unused-vars": [
"error",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "interface",
"format": ["PascalCase"],
"custom": { "regex": "^I[A-Z]", "match": true }
},
{
"selector": "typeAlias",
"format": ["PascalCase"],
"custom": { "regex": "^T[A-Z]", "match": true }
}
]
}
}