forked from GSA/code-gov-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
48 lines (48 loc) · 818 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
45
46
47
48
{
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"plugins": [
"mocha"
],
"rules": {
"default-case": 1,
"no-empty-function": 0,
"no-param-reassign": 0,
"no-unused-expressions": 0,
"no-unused-vars": 1,
"global-require": 0,
"brace-style": 1,
"camelcase": 0,
"comma-dangle": 1,
"eol-last": 1,
"indent": [1, 2],
"max-len": [
1,
{
"code": 120,
"ignoreUrls": true
}
],
"no-multiple-empty-lines": [
1,
{
"max": 1,
"maxEOF": 1,
"maxBOF": 0
}
],
"semi": [
1,
"always"
],
"no-var": 1,
"mocha/no-global-tests": "error"
}
}