-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.eslintrc
More file actions
54 lines (54 loc) · 1.21 KB
/
.eslintrc
File metadata and controls
54 lines (54 loc) · 1.21 KB
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
{
"extends": ["eslint:recommended", "airbnb-base"],
"rules": {
"semi": [2, "always"],
"no-underscore-dangle": 0,
"no-param-reassign": 0,
"max-classes-per-file": 0,
"no-unused-vars": 0,
"no-undef": 0,
"no-console": 0,
"no-prototype-builtins": 0,
"no-use-before-define": 0,
"consistent-return": 0,
"class-methods-use-this": 0,
"no-throw-literal": 0,
"max-len": 0,
"array-callback-return": 0,
"no-plusplus": 0,
"no-shadow": 0,
"no-unused-expressions": 0,
"no-mixed-operators": 0,
"radix": 0,
"no-template-curly-in-string": 0,
"no-nested-ternary": 0,
"prefer-destructuring": 0,
"no-case-declarations": 0,
"default-case": 0,
"new-cap": 0,
"default-param-last": 0,
"prefer-promise-reject-errors": 0,
"implicit-arrow-linebreak": 0,
"camelcase": 0,
"func-names": 0,
"no-restricted-syntax": 0,
"no-bitwise": 0,
"guard-for-in": 0
},
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"buildfire": true,
"tinymce": true,
"mdc": true,
"Setting": true,
"AuthManager": true
}
}