Skip to content

Commit c1d9a75

Browse files
author
andela-nmartin
committed
Adds eslint for code climate issues
1 parent a314e5e commit c1d9a75

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.eslintrc

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"asi": false,
3+
"bitwise": true,
4+
"browser": true,
5+
"camelcase": false,
6+
"curly": true,
7+
"forin": true,
8+
"immed": true,
9+
"latedef": "nofunc",
10+
"maxlen": 120,
11+
"newcap": true,
12+
"noarg": true,
13+
"noempty": true,
14+
"nonew": true,
15+
"predef": [
16+
"require",
17+
"console",
18+
"res",
19+
"process",
20+
"__dirname",
21+
"expect",
22+
"it",
23+
"describe",
24+
"beforeEach",
25+
"module"
26+
],
27+
"quotmark": true,
28+
"trailing": true,
29+
"undef": true,
30+
"unused": true
31+
}

0 commit comments

Comments
 (0)