aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
diff options
context:
space:
mode:
Diffstat (limited to 'tslint.json')
-rw-r--r--tslint.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/tslint.json b/tslint.json
new file mode 100644
index 0000000..b2cd447
--- /dev/null
+++ b/tslint.json
@@ -0,0 +1,36 @@
+{
+ "rules": {
+ "class-name": true,
+ "curly": false,
+ "eofline": true,
+ "indent": "spaces",
+ "max-line-length": [true, 140],
+ "member-ordering": [true,
+ "public-before-private",
+ "static-before-instance",
+ "variables-before-functions"
+ ],
+ "no-arg": true,
+ "no-construct": true,
+ "no-duplicate-key": true,
+ "no-duplicate-variable": true,
+ "no-empty": true,
+ "no-eval": true,
+ "no-trailing-comma": true,
+ "no-trailing-whitespace": true,
+ "no-unused-expression": true,
+ "no-unused-variable": true,
+ "no-unreachable": true,
+ "no-use-before-declare": true,
+ "one-line": [true,
+ "check-open-brace",
+ "check-catch",
+ "check-else",
+ "check-whitespace"
+ ],
+ "quotemark": [true, "single"],
+ "semicolon": true,
+ "triple-equals": true,
+ "variable-name": false
+ }
+}