We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a314e5e commit c1d9a75Copy full SHA for c1d9a75
.eslintrc
@@ -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