From 2a21c14630e6fac45bf63121eea8fe581b99adce Mon Sep 17 00:00:00 2001 From: Yahya Gilany Date: Mon, 3 Apr 2017 01:13:15 -0400 Subject: [PATCH] added tslint.json --- tslint.json | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 tslint.json diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..b961a13 --- /dev/null +++ b/tslint.json @@ -0,0 +1,51 @@ +{ + "extends": [ + "tslint:recommended" + ], + "rules": { + "no-unused-expression": true, + "no-duplicate-variable": true, + "no-duplicate-key": true, + "no-unused-variable": true, + "no-trailing-whitespace": false, + "interface-name": [ + false + ], + "eofline": false, + "curly": true, + "class-name": true, + "semicolon": ["always"], + "triple-equals": true, + "arrow-parens": false, + "no-console": [ + "log", + "error" + ], + "trailing-comma": [ + false + ], + "object-literal-sort-keys": false, + "max-classes-per-file": [ + false + ], + "max-line-length": [ + false + ], + "quotemark": [ + "single" + ], + "indent": [ + "tabs" + ], + "variable-name": [ + "check-format", + "allow-leading-underscore" + ], + "align": [ + false + ], + "no-empty-interface":[ + false + ] + } +} \ No newline at end of file