1
1
{
2
- "root": true,
3
- "parser": "@typescript-eslint/parser",
4
- "env": { "node": true },
5
- "plugins": [
6
- "@typescript-eslint"
7
- ],
8
- "extends": [
9
- "eslint:recommended",
10
- "plugin:@typescript-eslint/eslint-recommended",
11
- "plugin:@typescript-eslint/recommended"
12
- ],
13
- "parserOptions": {
14
- "sourceType": "module"
15
- },
16
- "rules": {
17
- "no-unused-vars": "off",
18
- "@typescript-eslint/no-unused-vars": ["error", { "args": "none" }],
19
- "@typescript-eslint/ban-ts-comment": "off",
20
- "no-prototype-builtins": "off",
21
- "@typescript-eslint/no-empty-function": "off"
22
- }
23
- }
2
+ "root": true,
3
+ "parser": "@typescript-eslint/parser",
4
+ "env": {
5
+ "node": true
6
+ },
7
+ "plugins": [
8
+ "@typescript-eslint"
9
+ ],
10
+ "extends": [
11
+ "eslint:recommended",
12
+ "plugin:@typescript-eslint/eslint-recommended",
13
+ "plugin:@typescript-eslint/recommended"
14
+ ],
15
+ "parserOptions": {
16
+ "sourceType": "module"
17
+ },
18
+ "rules": {
19
+ "no-unused-vars": "off",
20
+ "@typescript-eslint/no-unused-vars": [
21
+ "error",
22
+ {
23
+ "args": "none"
24
+ }
25
+ ],
26
+ "@typescript-eslint/ban-ts-comment": "off",
27
+ "no-prototype-builtins": "off",
28
+ "no-useless-escape": "off",
29
+ "@typescript-eslint/no-inferrable-types": "off",
30
+ "@typescript-eslint/no-empty-function": "off",
31
+ "@typescript-eslint/explicit-function-return-type": [
32
+ "error"
33
+ ]
34
+ }
35
+ }
0 commit comments