aboutsummaryrefslogtreecommitdiff
path: root/tslint.json
diff options
context:
space:
mode:
Diffstat (limited to 'tslint.json')
-rw-r--r--tslint.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/tslint.json b/tslint.json
new file mode 100644
index 0000000..35769ad
--- /dev/null
+++ b/tslint.json
@@ -0,0 +1,33 @@
+{
+ "defaultSeverity": "error",
+ "extends": [
+ "tslint-config-airbnb",
+ "tslint-consistent-codestyle",
+ "tslint-eslint-rules",
+ "tslint-microsoft-contrib/latest",
+ "tslint:all"
+ ],
+ "jsRules": {
+ "max-line-length": {
+ "options": [
+ 120
+ ]
+ }
+ },
+ "rules": {
+ "max-line-length": {
+ "options": [
+ 120
+ ]
+ },
+ "mocha-avoid-only": false,
+ "mocha-no-side-effect-code": false,
+ "mocha-unneeded-done": false,
+ "newline-per-chained-call": false,
+ "no-constant-condition": true,
+ "no-relative-imports": false
+ },
+ "rulesDirectory": [
+ "node_modules/tslint-eslint-rules/dist/rules"
+ ]
+}