Skip to content

Instantly share code, notes, and snippets.

@pridees
Last active March 21, 2018 16:26
Show Gist options
  • Save pridees/900fa8509814c9153bb50fbaf360e264 to your computer and use it in GitHub Desktop.
Save pridees/900fa8509814c9153bb50fbaf360e264 to your computer and use it in GitHub Desktop.
tslint.json
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"no-empty-interface": true,
"no-console": false,
"no-unused-variable": false,
"no-unused-expression": false,
"no-empty": true,
"no-eval": true,
"no-debugger": true,
"object-literal-sort-keys": false,
"quotemark": false,
"semicolon": [true, "never"],
"trailing-comma": false
},
"rulesDirectory": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment