-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheslint.config.ts
More file actions
46 lines (41 loc) · 1.17 KB
/
eslint.config.ts
File metadata and controls
46 lines (41 loc) · 1.17 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
import { defineConfig } from "eslint/config";
import js from "@eslint/js";
import stylistic from "@stylistic/eslint-plugin";
import tseslint from "typescript-eslint";
import type { Linter } from "eslint";
const stylisticConfig = stylistic.configs.customize({
indent: 2,
quotes: "double",
semi: true,
});
const stylisticRulesAsWarnings: Record<string, Linter.RuleEntry>
= Object.entries(stylisticConfig.rules || {}).reduce(
(acc, [ruleName, ruleConfig]) => {
if (Array.isArray(ruleConfig)) {
// Rule has configuration options: ["error", { options }] -> ["warn", { options }]
acc[ruleName] = ["warn", ...ruleConfig.slice(1)];
}
else {
// Rule is just a severity level: "error" -> "warn"
acc[ruleName] = "warn";
}
return acc;
},
{} as Record<string, Linter.RuleEntry>,
);
export default defineConfig(
{ ignores: ["**/dist/**"] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.{ts,tsx}"],
languageOptions: {
ecmaVersion: "latest",
},
plugins: {
"@stylistic": stylistic,
},
rules: {
...stylisticRulesAsWarnings,
},
},
);