forked from effect-app/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslint.base.config.mjs
212 lines (202 loc) · 7.46 KB
/
eslint.base.config.mjs
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/* eslint-disable @typescript-eslint/ban-ts-comment */
// @ts-nocheck
import { FlatCompat } from "@eslint/eslintrc"
import js from "@eslint/js"
import path from "node:path"
import { fileURLToPath } from "node:url"
import tsParser from "@typescript-eslint/parser"
import codegen from "eslint-plugin-codegen"
import _import from "eslint-plugin-import"
import sortDestructureKeys from "eslint-plugin-sort-destructure-keys"
import unusedImports from "eslint-plugin-unused-imports"
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import dprint from "@ben_12/eslint-plugin-dprint";
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
})
/**
* @param {string} dirName
* @param {boolean} [forceTS=false]
* @returns {import("eslint").Linter.FlatConfig[]}
*/
export function baseConfig(dirName, forceTS = false, project = undefined) {
// eslint-disable-next-line no-undef
const enableTS = !!dirName && (forceTS || process.env["ESLINT_TS"])
return [
{
ignores: [
"**/*.js",
// "**/*.mjs",
// "**/*.cjs",
"**/*.jsx",
"**/*.d.ts",
"**/node_modules/**",
"vitest.config.ts",
"vitest.config.test.ts",
"vite.config.ts",
"eslint.*.mjs",
]
},
js.configs.recommended,
...tseslint.config(
eslint.configs.recommended,
tseslint.configs.recommended,
),
...(enableTS ? tseslint.configs.recommendedTypeChecked : []),
{
// otherwise this config object doesn't apply inside vue files
// I mean the rules are not applied, the plugins are not loaded
// files: ["**/*.ts", "**/*.tsx"],
name: "base",
languageOptions: {
parser: tsParser,
parserOptions: {
extraFileExtensions: [".vue"], // should be the same as vue config for perfomance reasons (https://typescript-eslint.io/troubleshooting/typed-linting/performance#project-service-issues)
...(enableTS
&& {
tsconfigRootDir: dirName,
projectService: true
})
}
},
settings: {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
typescript: {
alwaysTryTypes: true
} // this loads <rootdir>/tsconfig.json to eslint
}
},
linterOptions: {
reportUnusedDisableDirectives: "off"
},
plugins: {
import: _import,
"sort-destructure-keys": sortDestructureKeys,
"unused-imports": unusedImports,
codegen
},
rules: {
"no-unexpected-multiline": "off",
"no-restricted-imports": ["error", {
"paths": [
{
name: ".",
"message":
"Please import from the specific file instead. Imports from index in the same directory are almost always wrong (circular)."
},
{
name: "./",
"message":
"Please import from the specific file instead. Imports from index in the same directory are almost always wrong (circular)."
},
{
name: "./index",
"message":
"Please import from the specific file instead. Imports from index in the same directory are almost always wrong (circular)."
}
]
}],
"@typescript-eslint/no-namespace": "off", // We like namespaces, where ES modules cannot compete (augmenting existing types)
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true
}
],
"@typescript-eslint/no-use-before-define": ["warn", { functions: false, classes: true, variables: true }], // functions may depend on classes or variables defined later
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/no-empty-object-type": "off",
"sort-destructure-keys/sort-destructure-keys": "error", // Mainly to sort render props
"require-yield": "off", // we want to be able to use e.g Effect.gen without having to worry about lint.
"sort-imports": "off",
"import/first": "error",
"import/newline-after-import": "error",
"import/no-duplicates": ["error", {"prefer-inline": true}],
"import/no-unresolved": "off", // eslint don't understand some imports very well
"import/order": "off",
"@typescript-eslint/consistent-type-imports": ["error", { fixStyle: 'inline-type-imports' }],
"object-shorthand": "error",
...(enableTS
&& {
"@typescript-eslint/restrict-template-expressions": "warn",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/no-unsafe-assignment": "warn",
"@typescript-eslint/no-unsafe-call": "warn",
"@typescript-eslint/no-unsafe-return": "warn",
"@typescript-eslint/no-unsafe-argument": "warn",
"@typescript-eslint/no-unsafe-member-access": "warn",
"@typescript-eslint/no-misused-promises": "warn",
"@typescript-eslint/unbound-method": "warn",
"@typescript-eslint/only-throw-error": "off",
"@typescript-eslint/no-base-to-string": "warn",
"@typescript-eslint/no-floating-promises": "warn",
})
}
}
]
}
/**
* @param {string} dirName
* @param {boolean} [forceTS=false]
* @returns {import("eslint").Linter.FlatConfig[]}
*/
export function augmentedConfig(dirName, forceTS = false, project = undefined) {
return [
...baseConfig(dirName, forceTS, project),
{
name: "augmented",
plugins: {
"@ben_12/dprint": dprint
},
rules: {
...dprint.configs["typescript-recommended"].rules,
"@ben_12/dprint/typescript": [
"error",
{
// Use dprint JSON configuration file (default: "dprint.json")
// It may be created using `dprint init` command
// See also https://dprint.dev/config/
//configFile: "dprint.json",
// The TypeScript configuration of dprint
// See also https://dprint.dev/plugins/typescript/config/
config: {
// The TypeScript configuration of dprint
// See also https://dprint.dev/plugins/typescript/config/,
"indentWidth": 2,
"semiColons": "asi",
"quoteStyle": "alwaysDouble",
"trailingCommas": "never",
"arrowFunction.useParentheses": "force",
"memberExpression.linePerExpression": true,
"binaryExpression.linePerExpression": true,
"importDeclaration.forceSingleLine": true,
"exportDeclaration.forceSingleLine": true
}
},
],
"codegen/codegen": [
"error",
{
presets: "@effect-app/eslint-codegen-model/dist/presets/index.js"
}
]
}
}
]
}