forked from bioinformatics-ua/dicoogle-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
42 lines (42 loc) · 786 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
{
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"parser": "babel-eslint",
"env": {
"commonjs": true,
"es6": true
},
"globals": {
"process": false,
"console": false
},
"rules": {
"no-alert": 2,
"no-console": 1,
"quotes": 0,
"curly": 0,
"strict": 1,
"new-cap": 0,
"camelcase": 0,
"comma-dangle": 1,
"no-unused-vars": 1,
"comma-spacing": 1,
"space-infix-ops": 1,
"no-mixed-spaces-and-tabs": 1,
"no-multi-spaces": 1,
"no-extra-semi": 1,
"key-spacing": 1,
"semi-spacing": 1,
"eol-last": 1,
"no-undef": 2,
"valid-jsdoc": [1, {
"requireReturn": false,
"prefer": {
"return": "returns"
}
}]
}
}