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
| {
| "globals": {},
| "env": {
| "browser": true,
| "commonjs": true,
| "node": true,
| "es2020": true
| },
| "parser": "@typescript-eslint/parser",
| "parserOptions": { "ecmaVersion": "latest" },
| "plugins": [
| "@typescript-eslint"
| ],
| "extends": [
| "eslint:recommended",
| "plugin:import/errors",
| "plugin:import/warnings",
| "plugin:node/recommended",
| "plugin:promise/recommended",
| "plugin:json/recommended-with-comments",
| "plugin:@typescript-eslint/eslint-recommended",
| "plugin:@typescript-eslint/recommended",
| "airbnb-base"
| ],
| "ignorePatterns": [ "node_modules", "types" ],
| "rules": {
| "@typescript-eslint/no-explicit-any": "off",
| "@typescript-eslint/ban-types": "off",
| "@typescript-eslint/ban-ts-comment": "off",
| "@typescript-eslint/explicit-module-boundary-types": "off",
| "@typescript-eslint/no-var-requires": "off",
| "camelcase": "off",
| "class-methods-use-this": "off",
| "default-param-last": "off",
| "dot-notation": "off",
| "func-names": "off",
| "guard-for-in": "off",
| "import/extensions": "off",
| "import/no-extraneous-dependencies": "off",
| "import/no-named-as-default": "off",
| "import/no-unresolved": "off",
| "import/prefer-default-export": "off",
| "lines-between-class-members": "off",
| "max-len": [1, 275, 3],
| "newline-per-chained-call": "off",
| "no-async-promise-executor": "off",
| "no-await-in-loop": "off",
| "no-bitwise": "off",
| "no-case-declarations":"off",
| "no-continue": "off",
| "no-loop-func": "off",
| "no-mixed-operators": "off",
| "no-param-reassign":"off",
| "no-plusplus": "off",
| "no-regex-spaces": "off",
| "no-restricted-globals": "off",
| "no-restricted-syntax": "off",
| "no-return-assign": "off",
| "no-underscore-dangle": "off",
| "no-promise-executor-return": "off",
| "node/no-missing-import": ["error", { "tryExtensions": [".js", ".json", ".ts"] }],
| "node/no-unpublished-import": "off",
| "node/no-unpublished-require": "off",
| "node/no-unsupported-features/es-syntax": "off",
| "no-lonely-if": "off",
| "node/shebang": "off",
| "object-curly-newline": "off",
| "prefer-destructuring": "off",
| "prefer-template":"off",
| "promise/always-return": "off",
| "promise/catch-or-return": "off",
| "promise/no-nesting": "off",
| "radix": "off"
| }
| }
|
|