Skip to content

Instantly share code, notes, and snippets.

@vemarav
Created November 3, 2019 18:38
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 vemarav/0da87144c965b5458e79c04089d6336b to your computer and use it in GitHub Desktop.
Save vemarav/0da87144c965b5458e79c04089d6336b to your computer and use it in GitHub Desktop.
{
"extends": ["tslint-react-recommended"],
"rules": {
"ordered-imports": [true],
"quotemark": [true, "single", "jsx-single", "avoid-escape"],
"semicolon": [true, "never"],
"member-access": [false],
"member-ordering": [false],
"trailing-comma": [
true,
{
"singleline": "never",
"multiline": "always"
}
],
"no-empty": false,
"no-submodule-imports": false,
"no-implicit-dependencies": false,
"no-constant-condition": false,
"triple-equals": [true, "allow-undefined-check"],
"ter-indent": [
true,
2,
{
"SwitchCase": 1
}
],
"no-duplicate-imports": false,
"jsx-alignment": true,
"jsx-no-bind": true,
"jsx-no-lambda": true,
"max-classes-per-file": [false]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment