Last active
August 23, 2019 17:43
-
-
Save ryan2clw/681aa4b0113be6bf56919245242ea09a to your computer and use it in GitHub Desktop.
tslint config
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
{ | |
"defaultSeverity": "error", | |
"extends": [ | |
"tslint-react" | |
], | |
"jsRules": { | |
}, | |
"rules": { | |
"member-access": false, | |
"ordered-imports": false, | |
"quotemark": false, | |
"no-console": false, | |
"semicolon": false, | |
"jsx-no-lambda": false, | |
"jsx-no-multiline-js": false | |
}, | |
"rulesDirectory": [ | |
], | |
"linterOptions": { | |
"exclude": [ | |
"config/**/*.js", | |
"node_modules/**/*.ts" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment