forked from alohaeditor/Aloha-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
37 lines (37 loc) · 1001 Bytes
/
.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
{
"env": {
"browser": true,
"es2021": true,
"amd": true,
"commonjs": false
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"no-mixed-spaces-and-tabs": "off",
"no-useless-escape": "off",
"no-unused-vars": "off",
"no-extra-semi": "off",
"no-undef": "off",
"no-redeclare": "off",
"no-fallthrough": "off",
"no-prototype-builtins": "off",
"no-empty": "off",
"no-unexpected-multiline": "off",
"no-cond-assign": "off",
"no-extra-boolean-cast": "off",
"no-self-assign": "off",
"no-global-assign": "off",
"no-control-regex": "off",
"no-shadow-restricted-names": "off",
"no-constant-condition": "off",
"no-misleading-character-class": "off",
"no-dupe-else-if": "off",
"valid-typeof": "off"
},
"plugins": [
"requirejs"
]
}