File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 33
33
"mocha" : " latest" ,
34
34
"chai" : " latest" ,
35
35
"browserify" : " latest" ,
36
- "istanbul" : " latest"
36
+ "istanbul" : " latest" ,
37
+ "tslint" : " latest"
37
38
},
38
39
"scripts" : {
39
40
"test" : " jake runtests"
Original file line number Diff line number Diff line change
1
+ {
2
+ "rules" : {
3
+ "class-name" : true ,
4
+ "comment-format" : [true ,
5
+ " check-space"
6
+ ],
7
+ "curly" : true ,
8
+ "indent" : true ,
9
+ "no-trailing-comman" : true ,
10
+ "no-trailing-whitespace" : true ,
11
+ "no-unreachable" : true ,
12
+ "no-unused-variable" : true ,
13
+ "no-use-before-declare" : true ,
14
+ "no-var-keyword" : true ,
15
+ "quotemark" : true ,
16
+ "semicolon" : true ,
17
+ "whitespace" : [true ,
18
+ " check-branch" ,
19
+ " check-operator" ,
20
+ " check-separator" ,
21
+ " check-type"
22
+ ]
23
+ }
24
+ }
You can’t perform that action at this time.
0 commit comments