Created
November 19, 2017 21:26
-
-
Save zeromancer/0e8519d0e5545c0e36fbccf5e1db35e4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"defaultSeverity": "warning", | |
"extends": [ | |
"tslint:recommended" | |
], | |
"jsRules": {}, | |
"rules": { | |
"arrow-parens": false, | |
"no-var-requires": false, | |
"no-console": [false, "log", "error", "info"], | |
"no-unused-expression": false, | |
"curly": false, | |
"ordered-imports": [false], | |
"semicolon": false, | |
"quotemark": [true, "double"], | |
"object-literal-sort-keys": false, | |
"max-classes-per-file": [ | |
3 | |
] | |
}, | |
"rulesDirectory": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment