aboutsummaryrefslogtreecommitdiffstats
path: root/tslint.json
diff options
context:
space:
mode:
Diffstat (limited to 'tslint.json')
-rw-r--r--tslint.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/tslint.json b/tslint.json
new file mode 100644
index 000000000..975089ab0
--- /dev/null
+++ b/tslint.json
@@ -0,0 +1,12 @@
1{
2 "extends": ["tslint-config-airbnb"],
3 "rules": {
4 "import-name": false,
5 "variable-name": false,
6 "class-name": false,
7 "prefer-array-literal": false,
8 "semicolon": [true, "always"],
9 "max-line-length": false,
10 "ordered-imports": true
11 }
12}