-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
48 lines (48 loc) · 1.16 KB
/
.eslintrc
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
{
"extends": ["google", "prettier"],
"rules": {
"linebreak-style": "off",
"eol-last": "off",
"max-len": "off",
"one-var": "off",
"no-use-before-define": ["warn", { "functions": true, "classes": true }],
"no-warning-comments": "off",
"brace-style": "off",
"no-nested-ternary": "off",
"no-mixed-requires": "off",
"no-negated-condition": "off",
"no-tabs": "off",
"camelcase": "off",
"new-cap": "off",
"no-mixed-spaces-and-tabs": "off",
"quote-props": "off",
"space-before-function-paren": "off",
"guard-for-in": "off",
"max-nested-callbacks": "off",
"no-unmodified-loop-condition": "off",
"comma-dangle": "off",
"require-jsdoc": "off",
"arrow-parens": "off",
"prettier/prettier": "error",
"object-curly-spacing": "off",
"array-bracket-spacing": "off",
"no-invalid-this": 0,
"no-var": "off",
"no-unused-vars": "off",
"prefer-const": "warn"
},
"globals": {
"io": true,
"app": true,
"document": true,
"window": true,
"expect": true,
"describe": true,
"it": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020
},
"plugins": ["prettier"]
}