Skip to content

Instantly share code, notes, and snippets.

@kparkov
Last active September 3, 2018 18:44
Show Gist options
  • Save kparkov/f88d86e4fbbb945a970d4425986ccf50 to your computer and use it in GitHub Desktop.
Save kparkov/f88d86e4fbbb945a970d4425986ccf50 to your computer and use it in GitHub Desktop.
tslint.json in typescript react
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts"
]
},
"rules": {
"variable-name": [true, "allow-leading-underscore"],
"jsx-no-lambda": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment