-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheslint.config.cjs
More file actions
116 lines (114 loc) · 3.87 KB
/
Copy patheslint.config.cjs
File metadata and controls
116 lines (114 loc) · 3.87 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
const { fixupConfigRules, fixupPluginRules } = require("@eslint/compat");
const { FlatCompat } = require("@eslint/eslintrc");
const js = require("@eslint/js");
const typescriptEslint = require("@typescript-eslint/eslint-plugin");
const tsParser = require("@typescript-eslint/parser");
const _import = require("eslint-plugin-import");
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
});
module.exports = [{
ignores: [".eslintrc.*"],
}, ...fixupConfigRules(compat.extends(
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript",
)).map(config => ({
...config,
languageOptions: {
globals: {},
parser: tsParser,
parserOptions: {
project: "tsconfig.json",
},
},
plugins: {
"@typescript-eslint": fixupPluginRules(typescriptEslint),
"import": fixupPluginRules(_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,
}],
},
}))];