We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d695afa commit 82ecd5dCopy full SHA for 82ecd5d
package.json
@@ -33,7 +33,8 @@
33
"mocha": "latest",
34
"chai": "latest",
35
"browserify": "latest",
36
- "istanbul": "latest"
+ "istanbul": "latest",
37
+ "tslint": "latest"
38
},
39
"scripts": {
40
"test": "jake runtests"
tslint.json
@@ -0,0 +1,24 @@
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
+}
0 commit comments