Skip to content

Instantly share code, notes, and snippets.

@ryan2clw
Last active August 23, 2019 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryan2clw/681aa4b0113be6bf56919245242ea09a to your computer and use it in GitHub Desktop.
Save ryan2clw/681aa4b0113be6bf56919245242ea09a to your computer and use it in GitHub Desktop.
tslint config
{
"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