forked from vladmandic/human-bjs-vrm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
44 lines (44 loc) · 1.02 KB
/
.eslintrc.json
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
{
"globals": {},
"env": {
"node": true,
"es2021": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"dist",
"node_modules"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"max-len": [1, 275, 3],
"newline-per-chained-call": "off",
"lines-between-class-members": "off",
"no-await-in-loop": "off",
"no-continue": "off",
"no-console": "off",
"no-mixed-operators": "off",
"no-plusplus": "off",
"no-loop-func": "off",
"no-restricted-syntax": "off",
"no-param-reassign": "off",
"object-curly-newline": "off",
"prefer-destructuring": "off",
"prefer-template": "off",
"radix": "off"
}
}