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
| {
| "parserOptions": {
| "ecmaVersion": 2020
| },
| "extends": [
| "eslint:all",
| "prettier",
| "plugin:node/recommended",
| "plugin:@typescript-eslint/eslint-recommended",
| "plugin:@typescript-eslint/recommended"
| ],
| "parser": "@typescript-eslint/parser",
| "plugins": ["@typescript-eslint"],
| "rules": {
| "capitalized-comments": "off",
| "camelcase": "off",
| "curly": ["error", "all"],
| "id-length": "off",
| "max-lines-per-function": "off",
| "max-statements": "off",
| "multiline-comment-style": "off",
| "no-bitwise": "off",
| "no-magic-numbers": "off",
| "no-param-reassign": "off",
| "no-plusplus": "off",
| "node/no-unsupported-features/es-syntax": "off",
| "one-var": "off",
| "padded-blocks": "off"
| }
| }
|
|