Created
September 4, 2017 04:31
-
-
Save tcshao/a1d862e2290e20269b3d97df96d7b1ff to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"extends": "tslint:all", | |
"rules": { | |
"object-literal-sort-keys": false, | |
"ordered-imports": false, | |
"member-ordering": [ | |
false | |
], | |
"member-access": [ | |
false | |
], | |
"quotemark": [ | |
false | |
], | |
"trailing-comma": [ | |
false | |
], | |
"no-parameter-properties": false, | |
"interface-name": [ | |
false | |
], | |
"curly": [ | |
false, | |
"as-needed" | |
], | |
"typedef": [ | |
false, | |
"variable-declaration" | |
], | |
"comment-format": [ | |
false | |
], | |
"no-import-side-effect": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment