Skip to content

Instantly share code, notes, and snippets.

@terence410
Last active October 30, 2019 12:06
Show Gist options
  • Save terence410/02f4102289c9554ce3f926f98f1482e1 to your computer and use it in GitHub Desktop.
Save terence410/02f4102289c9554ce3f926f98f1482e1 to your computer and use it in GitHub Desktop.
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"semicolon": [true, "always"],
"no-trailing-whitespace": false,
"arrow-parens": false,
"no-console": false,
"max-classes-per-file": 1,
"interface-over-type-literal": false,
"object-literal-sort-keys": false,
"max-line-length": [100],
"no-bitwise": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
},
"rulesDirectory": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment