generated from solidjs-community/solid-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
36 lines (36 loc) · 934 Bytes
/
.eslintrc.json
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
{
"root": true,
"extends": [
"nirtamir2",
"nirtamir2/recommended",
"nirtamir2/typescript",
"nirtamir2/solid",
"nirtamir2/security",
"nirtamir2/i18n"
],
"overrides": [
{
"files": "src/index.tsx",
"rules": {
"github/unescaped-html-literal": "off",
"unicorn/prefer-math-trunc": "off",
"@typescript-eslint/init-declarations": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"etc/prefer-interface": "off",
"no-implicit-coercion": "off",
"no-restricted-globals": "off",
"import/no-unused-modules": "off",
"solid/no-innerhtml": "off",
"security/detect-object-injection": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"github/no-dataset": "off"
}
},
{
"files": ["vite.config.ts"],
"rules": {
"import/no-unused-modules": "off"
}
}
]
}