-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
68 lines (64 loc) · 1.46 KB
/
.eslintrc.js
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
/* eslint-env node */
module.exports = {
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
// @todo
// "plugin:@typescript-eslint/recommended-type-checked",
"next/core-web-vitals",
"next/typescript",
"eslint-config-prettier",
],
overrides: [
{
files: ["*.js", "*.cjs", "*.mjs"],
extends: ["plugin:@typescript-eslint/disable-type-checked"],
},
],
parser: "@typescript-eslint/parser",
root: true,
parserOptions: {
project: true,
tsconfigRootDir: __dirname,
},
plugins: [
"@typescript-eslint",
"eslint-plugin-import",
"eslint-plugin-unused-imports",
],
rules: {
// not relevant with some switch/case usage
"no-fallthrough": "off",
// that's for escape hatch, why would we want to ban it?
"@typescript-eslint/ban-ts-comment": "off",
// handy sometimes
"@typescript-eslint/no-explicit-any": "off",
"sort-imports": [
"error",
{
ignoreCase: true,
ignoreDeclarationSort: true,
},
],
"import/order": [
"error",
{
alphabetize: {
order: "asc",
caseInsensitive: true,
},
"newlines-between": "always",
},
],
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
vars: "all",
varsIgnorePattern: "^_",
args: "after-used",
argsIgnorePattern: "^_",
},
],
},
};