-
-
Notifications
You must be signed in to change notification settings - Fork 499
/
.eslintrc
124 lines (124 loc) · 2.72 KB
/
.eslintrc
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
{
"root": true,
"parser": "@typescript-eslint/parser",
"env": {
"node": true,
"browser": true
},
"plugins": [
"@typescript-eslint",
"unused-imports"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:svelte/recommended",
"plugin:import/recommended",
"plugin:import/typescript"
],
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
// always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/unist`
"project": "./tsconfig.json"
}
}
},
"parserOptions": {
"sourceType": "module",
"extraFileExtensions": [
".svelte"
]
},
"overrides": [
{
"files": [
"*.svelte"
],
"parser": "svelte-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
}
],
"rules": {
// todo: Reenable once https://github.com/import-js/eslint-plugin-import/issues/1479 is fixed.
"import/no-duplicates": "off",
"svelte/valid-compile": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "none"
}
],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"no-prototype-builtins": "off",
"svelte/sort-attributes": "warn",
"import/order": [
"warn",
{
"alphabetize": {
"order": "asc",
"caseInsensitive": true
},
"newlines-between": "always"
}
],
"import/no-unresolved": [
"error",
{
"ignore": [
"^obsidian$",
"^@testing-library/svelte$"
]
}
],
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "enum",
"format": [
"PascalCase"
]
},
{
"selector": "enumMember",
"format": [
"UPPER_CASE"
]
},
{
"selector": "interface",
"format": [
"PascalCase"
],
"custom": {
"regex": "^I[A-Z]",
"match": false
}
},
// UPPER_CASE is great, but we can't check it automatically only for vars declared once in the lifecycle of a program,
// as Google's style guide suggests
{
"selector": "variable",
"modifiers": [
"const"
],
"format": [
"camelCase"
]
}
]
}
}