forked from EternallLight/cordova-plugin-openwith-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
44 lines (44 loc) · 887 Bytes
/
.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
{
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"env": {
"browser": true,
"serviceworker": true,
"commonjs": true,
"es6": true
},
"globals": {
"me": true
},
"rules": {
"camelcase": 0,
"eqeqeq": 1,
"no-extra-parens": 2,
"max-len": 0,
"valid-jsdoc": 1,
"require-jsdoc": 1,
"array-bracket-spacing": 1,
"block-spacing": 1,
"brace-style": 1,
"eol-last": 1,
"func-call-spacing": 1,
"func-name-matching": 1,
"no-lonely-if": 1,
"operator-assignment": 1,
"keyword-spacing": 1,
"arrow-body-style": 1,
"prefer-spread": 1,
"prefer-template": 1,
"prefer-arrow-callback": 1,
"prefer-rest-params": 0,
"template-curly-spacing": 1,
"no-invalid-this": 0
},
"extends": "google",
"root": true
}