-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
103 lines (103 loc) · 3.33 KB
/
.eslintrc.cjs
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// eslint-disable-next-line no-undef
module.exports = {
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
],
env: {
es6: true,
},
ignorePatterns: [".eslintrc.*"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
},
plugins: [
"@typescript-eslint",
"import",
],
settings: {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"],
},
"import/resolver": {
typescript: {
project: ["tsconfig.json", "package/tsconfig.json"],
},
node: {
project: ["tsconfig.json", "package/tsconfig.json"],
},
},
},
rules: {
"array-bracket-spacing": ["warn", "never"],
"arrow-parens": ["warn", "as-needed"],
"arrow-spacing": "warn",
"@typescript-eslint/await-thenable": "error",
"brace-style": "off",
"@typescript-eslint/brace-style": ["warn", "stroustrup"],
"@typescript-eslint/camelcase": "off",
"comma-dangle": "off",
"@typescript-eslint/comma-dangle": ["warn", "always-multiline"],
"comma-spacing": "off",
"@typescript-eslint/comma-spacing": "warn",
"@typescript-eslint/consistent-type-exports": ["warn"],
"@typescript-eslint/consistent-type-imports": ["warn"],
"eqeqeq": ["error", "smart"],
"@typescript-eslint/indent": ["warn", 4, {
SwitchCase: 1,
}],
"key-spacing": "warn",
"keyword-spacing": "warn",
"max-len": ["warn", {
code: 120,
comments: 100,
ignorePattern: "^\\s*import.*from.*;$", // ignore long imports
}],
"no-duplicate-imports": "warn",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": ["warn", {
ignoreParameters: true,
}],
"no-mixed-operators": "error",
"no-trailing-spaces": "warn",
"@typescript-eslint/no-unused-vars": ["warn", {
argsIgnorePattern: "^_+",
varsIgnorePattern: "^_+",
}],
"object-curly-newline": ["warn", {
consistent: true,
}],
"object-curly-spacing": ["warn", "always"],
"operator-linebreak": ["warn", "before"],
"import/order": ["warn", {
alphabetize: {
order: "asc",
caseInsensitive: true,
},
groups: ["builtin", "external", "internal", "parent", "sibling", "index"],
pathGroups: [{
pattern: "@commutelive/**",
group: "internal",
position: "before",
}, {
pattern: "~/**",
group: "internal",
}],
}],
"prefer-destructuring": "warn",
"prefer-template": "warn",
"quotes": "off",
"@typescript-eslint/quotes": ["warn", "double", {
avoidEscape: true,
}],
"quote-props": ["warn", "consistent-as-needed"],
"semi": ["warn", "always"],
"sort-imports": ["warn", {
"ignoreCase": true,
"ignoreDeclarationSort": true,
}]
},
};