generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
eslint.config.js
76 lines (74 loc) · 1.8 KB
/
eslint.config.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
69
70
71
72
73
74
75
76
import tseslint from "typescript-eslint";
import noInlineStyle from "eslint-plugin-no-inline-styles"
const __dirname = import.meta.dirname;
export default tseslint.config(
{
plugins: {
"@typescript-eslint": tseslint.plugin,
"no-inline-style": noInlineStyle
},
languageOptions: {
parser: tseslint.parser,
parserOptions: {
project: "./tsconfig.json",
tsconfigRootDir: __dirname,
},
},
files: ["{src,tests}/**/*.{ts,tsx}"],
rules: {
"no-console": "error",
"no-inline-style/no-inline-styles": 2,
"no-warning-comments": [
"error",
{
terms: [
"todo",
"fix",
"bug",
"perf",
"warn",
"test",
"hack",
"note",
],
},
],
"max-params": "error",
"@typescript-eslint/ban-ts-comment": [
"error",
{ "ts-expect-error": "allow-with-description" },
],
"@typescript-eslint/consistent-type-definitions": ["error", "type"],
"@typescript-eslint/array-type": ["error", { default: "generic" }],
"@typescript-eslint/switch-exhaustiveness-check": "error",
"@typescript-eslint/explicit-function-return-type": "error",
"no-restricted-syntax": [
"error",
{
selector: "TSEnumDeclaration",
message: "Use const assertion or a string union type instead.",
},
],
"@typescript-eslint/naming-convention": [
"error",
{
selector: "typeAlias",
format: ["PascalCase"],
},
{
selector: "variable",
types: ["boolean"],
format: ["PascalCase"],
prefix: ["is", "should", "has", "can", "did", "will"],
},
{
// Generic type parameter must start with letter T, followed by any uppercase letter.
selector: "typeParameter",
format: ["PascalCase"],
// custom: { regex: "^T[A-Z]", match: true },
},
],
},
},
{ ignores: ["build/"] },
);