Skip to content

Instantly share code, notes, and snippets.

@jessepinho
Last active February 3, 2019 11:48
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 jessepinho/117ababf946c39026407708328295a48 to your computer and use it in GitHub Desktop.
Save jessepinho/117ababf946c39026407708328295a48 to your computer and use it in GitHub Desktop.
tslint.json
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"defaultSeverity": "warning",
"rules": {
"interface-name": false,
"jsx-boolean-value": false,
"jsx-no-lambda": false,
"no-unused-expression": [true, "allow-tagged-template"],
"no-unused-variable": true,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"semicolon": [true, "never"],
"trailing-comma": [true, { "multiline": "always", "singleline": "never" }]
},
"linterOptions": {
"exclude": [
"config/**/*.js",
"node_modules/**/*.ts",
"coverage/lcov-report/*.js"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment