forked from pfefferf/ui5-nwabap-deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
39 lines (39 loc) · 924 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
38
39
{
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"extends": ["eslint:recommended", "google"],
"rules": {
"quotes": [
"error",
"double",
{ "allowTemplateLiterals": true }
],
"semi": [
"error",
"always"
],
"no-negated-condition": "off",
"require-jsdoc": "off",
"no-mixed-requires": "off",
"max-len": "off",
"no-implicit-coercion": [
2,
{ "allow": ["!!"] }
],
"comma-dangle": "off",
"no-tabs": "off",
"no-console": "off",
"valid-jsdoc": "off",
"linebreak-style": "off",
"indent": "off",
"no-async-promise-executor": "off",
"no-prototype-builtins": "off",
"object-curly-spacing": "off"
},
"root": true
}