Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rameshanandakrishnan/d8135b00e04af8da23ad52b572d79794 to your computer and use it in GitHub Desktop.
Save rameshanandakrishnan/d8135b00e04af8da23ad52b572d79794 to your computer and use it in GitHub Desktop.
My tslint.json file
{
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-plugin-prettier",
"tslint-config-prettier"
],
"linterOptions": {
"exclude": ["config/**/*.js", "node_modules/**/*.ts"]
},
"rules": {
"no-console": false,
"no-empty-interface": false,
"curly": false,
"max-classes-per-file": false,
"variable-name": [true, "ban-keywords", "allow-leading-underscore"],
"member-ordering": false,
"interface-over-type-literal": false,
"newline-before-return": true,
"object-literal-sort-keys": false,
"ordered-imports": false,
"jsx-no-lambda": false,
"prettier": true,
"no-shadowed-variable": false,
"interface-name": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment