This repository has been archived by the owner on Jun 6, 2023. It is now read-only.
forked from snabbdom/snabbdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
71 lines (71 loc) · 1.84 KB
/
.eslintrc.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
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:markdown/recommended",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier",
],
env: {
browser: true,
node: false,
},
overrides: [
{
files: ["*.ts", "*.tsx"],
parserOptions: {
tsconfigRootDir: __dirname,
project: ["./tsconfig.json", "test/tsconfig.json"],
},
extends: [
"plugin:@typescript-eslint/recommended-requiring-type-checking",
],
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-unsafe-argument": "off",
},
},
{
files: ["test/unit/**/*.ts", "test/unit/*.tsx"],
env: {
browser: true,
node: true,
},
},
{
files: ["examples/**/*.js"],
rules: {
"@typescript-eslint/explicit-module-boundary-types": "off",
},
},
{
files: ["*.js"],
excludedFiles: ["examples/**"],
extends: ["plugin:node/recommended"],
env: {
node: true,
browser: false,
},
rules: {
"@typescript-eslint/no-var-requires": "off",
},
},
],
rules: {
"max-statements-per-line": "error",
"no-var": "error",
"import/newline-after-import": "error",
"import/no-default-export": "error",
},
};