File tree Expand file tree Collapse file tree 4 files changed +360
-361
lines changed Expand file tree Collapse file tree 4 files changed +360
-361
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ "env" : {
3
+ "browser" : true ,
4
+ "node" : true
5
+ } ,
6
+ "extends" : "eslint:recommended" ,
7
+ "globals" : {
8
+ "Uint8Array" : false ,
9
+ "define" : false ,
10
+ "Float32Array" : false
11
+ } ,
12
+ "rules" : {
13
+ "indent" : [
14
+ "error" ,
15
+ 2
16
+ ] ,
17
+ "linebreak-style" : [
18
+ "error" ,
19
+ "unix"
20
+ ] ,
21
+ "quotes" : [
22
+ "error" ,
23
+ "single"
24
+ ] ,
25
+ "semi" : [
26
+ "error" ,
27
+ "always"
28
+ ]
29
+ }
30
+ } ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 16
16
"eslint-plugin-node" : " ^6.0.0" ,
17
17
"eslint-plugin-promise" : " ^3.6.0" ,
18
18
"eslint-plugin-standard" : " ^3.0.1" ,
19
- "jshint" : " ^2.9.5" ,
20
19
"mocha" : " ^5.0.0"
21
20
},
22
21
"bugs" : {
38
37
"url" : " https://github.com/jwagner/simplex-noise.js.git"
39
38
},
40
39
"scripts" : {
41
- "test" : " eslint simplex-noise.js && jshint simplex-noise.js && mocha" ,
40
+ "test" : " eslint simplex-noise.js && mocha" ,
42
41
"benchmark" : " node ./perf/benchmark.js"
43
42
}
44
43
}
You can’t perform that action at this time.
0 commit comments