We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 857f650Copy full SHA for 857f650
.gitignore
@@ -0,0 +1,4 @@
1
+.idea
2
+node_modules
3
+npm-debug.log
4
+.nyc_output
.jshintrc
@@ -0,0 +1,20 @@
+{
+ "node": true,
+ "esnext": true,
+ "bitwise": true,
5
+ "camelcase": false,
6
+ "curly": true,
7
+ "eqeqeq": true,
8
+ "immed": true,
9
+ "indent": 4,
10
+ "latedef": true,
11
+ "newcap": true,
12
+ "noarg": true,
13
+ "quotmark": "single",
14
+ "undef": true,
15
+ "unused": true,
16
+ "strict": true,
17
+ "trailing": true,
18
+ "smarttabs": true,
19
+ "sub": true
20
+}
0 commit comments