-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.eslintrc.cjs
155 lines (152 loc) · 5.03 KB
/
.eslintrc.cjs
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
function typescriptRules(annotations) {
let result = {
"no-console": "error",
"@typescript-eslint/ban-types": [
"error",
{
extendDefaults: false,
types: {
String: {
message: 'Use string instead',
fixWith: 'string',
},
Boolean: {
message: 'Use boolean instead',
fixWith: 'boolean',
},
Number: {
message: 'Use number instead',
fixWith: 'number',
},
Symbol: {
message: 'Use symbol instead',
fixWith: 'symbol',
},
Function: {
message: [
'The `Function` type accepts any function-like value.',
'It provides no type safety when calling the function, which can be a common source of bugs.',
'It also accepts things like class declarations, which will throw at runtime as they will not be called with `new`.',
'If you are expecting the function to accept certain arguments, you should explicitly define the function shape.',
].join('\n'),
},
// object typing
Object: {
message: [
'The `Object` type actually means "any non-nullish value", so it is marginally better than `unknown`.',
'- If you want a type meaning "any object", you probably want `Record<string, unknown>` instead.',
'- If you want a type meaning "any value", you probably want `unknown` instead.',
].join('\n'),
},
}
}
],
"@typescript-eslint/no-inferrable-types": "off",
"import/extensions": ["error", "always"],
};
if (annotations !== false) {
result["@typescript-eslint/typedef"] = [
"error",
{
arrowParameter: true,
memberVariableDeclaration: true,
parameter: true,
propertyDeclaration: true,
}
]
result["@typescript-eslint/explicit-function-return-type"] = [
"error",
{
"allowExpressions": true,
}
]
}
return result;
}
module.exports = {
root: true,
plugins: [
'eslint-plugin-import',
],
ignorePatterns: ["dist/*"],
overrides: [
{
extends: [
"eslint:recommended",
"plugin:node/recommended"
],
files: ['.eslintrc.cjs', 'webpack.config.cjs', 'gulpfile.cjs', 'repl-maker.cjs', 'scripts/**/*.{js,cjs}'],
parserOptions: {
"ecmaVersion": 2020
},
env: {
node: true,
browser: false,
es2020: true,
},
rules: {
"node/no-unpublished-require": "off",
"node/no-unpublished-import": "off",
}
},
{
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
files: ['**/*.ts'],
env: {
browser: true,
node: false
},
rules: typescriptRules(),
},
{
parser: '@typescript-eslint/parser',
plugins: [
'svelte3',
'@typescript-eslint',
],
processor: 'svelte3/svelte3',
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
files: ['**/*.svelte'],
excludedFiles: ['**/samples/**/*.svelte'],
env: {
browser: true,
node: false
},
rules: typescriptRules(),
settings: {
'svelte3/typescript': require('typescript'),
}
},
{
parser: '@typescript-eslint/parser',
plugins: [
'svelte3',
'@typescript-eslint',
],
processor: 'svelte3/svelte3',
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
files: ['**/samples/**/*.svelte'],
env: {
browser: true,
node: false
},
rules: typescriptRules(false),
settings: {
'svelte3/typescript': require('typescript'),
}
}
]
};