Skip to content

Instantly share code, notes, and snippets.

@xpsteven
Created October 2, 2017 03:35
Show Gist options
  • Save xpsteven/da871ec216469dadb6b11a9812f8f507 to your computer and use it in GitHub Desktop.
Save xpsteven/da871ec216469dadb6b11a9812f8f507 to your computer and use it in GitHub Desktop.
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"indent": [true, "tabs", 4],
"variable-name": [true, "ban-keywords", "allow-leading-underscore", "allow-snake-case"],
"no-var-requires": false,
"curly": [true, "ignore-same-line"],
"no-console": false,
"no-shadowed-variable": false,
"object-literal-sort-keys": false,
"member-access": false,
"ordered-imports": false,
"quotemark": [true, "single"],
"interface-name": false,
"arrow-parens": false
},
"rulesDirectory": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment