Created
October 25, 2018 19:58
-
-
Save carlosdelfino/ce2d9ef3fbe0050db5e1f4e3aeddd750 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
{ | |
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], | |
"linterOptions": { | |
"exclude": ["node_modules/**/*.ts"] | |
}, | |
"rules": { | |
"interface-over-type-literal": false, | |
"jsx-boolean-value": [true, "never"], | |
"jsx-no-lambda": false, | |
"no-console": false, | |
"no-shadowed-variable": false, | |
"object-literal-sort-keys": false, | |
"ordered-imports": [ | |
true, | |
{ | |
"import-sources-order": "lowercase-last", | |
"named-imports-order": "lowercase-last" | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment