forked from web-infra-dev/rsbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrslint.json
More file actions
43 lines (43 loc) · 1.71 KB
/
rslint.json
File metadata and controls
43 lines (43 loc) · 1.71 KB
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
[
{
"language": "javascript",
"ignores": ["**/dist-types/**", "**/compiled/**"],
"languageOptions": {
"parserOptions": {
"project": [
"./packages/core/tsconfig.json",
"./packages/create-rsbuild/tsconfig.json",
"./packages/plugin-babel/tsconfig.json",
"./packages/plugin-react/tsconfig.json",
"./packages/plugin-stylus/tsconfig.json",
"./packages/plugin-vue/tsconfig.json",
"./packages/plugin-less/tsconfig.json",
"./packages/plugin-sass/tsconfig.json",
"./packages/plugin-svelte/tsconfig.json",
"./packages/plugin-preact/tsconfig.json",
"./packages/plugin-solid/tsconfig.json",
"./packages/plugin-svgr/tsconfig.json"
]
}
},
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/promise-function-async": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-type-assertion": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/no-implied-eval": "off",
"@typescript-eslint/prefer-promise-reject-errors": "off",
"@typescript-eslint/no-empty-function": "off"
}
}
]