forked from rancher/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
48 lines (48 loc) · 856 Bytes
/
.eslintrc.js
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
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
},
extends: 'eslint:recommended',
globals: {
"document": true,
"window": true,
"jQuery": true,
"$": true,
"require": true,
"__dirname": true,
"process": true,
"ENV": true,
"module": true
},
env: {
browser: true,
"es6": true
},
rules: {
"no-cond-assign": [
2,
"except-parens"
],
"curly": 2,
"no-console": 0,
"no-debugger": 0,
"eqeqeq": 2,
"no-eval": 2,
"guard-for-in": 0,
"wrap-iife": 0,
"linebreak-style": 0,
"new-cap": 0,
"no-caller": 2,
"no-empty": 0,
"no-extra-boolean-cast": 0,
"no-new": 0,
"no-plusplus": 0,
"no-undef": 2,
"dot-notation": 0,
"strict": 0,
"no-eq-null": 2,
"no-unused-vars": 2
}
};