Skip to content

Instantly share code, notes, and snippets.

@b-tiwari
Created October 6, 2017 22:46
Show Gist options
  • Save b-tiwari/bac0fb181032baa5ab16b5a4531e8a71 to your computer and use it in GitHub Desktop.
Save b-tiwari/bac0fb181032baa5ab16b5a4531e8a71 to your computer and use it in GitHub Desktop.
AirBnB tslint with some config overridden
{
"defaultSeverity": "error",
"extends": "tslint-config-airbnb",
"jsRules": {},
"rules": {
"semicolon": [
false
],
"ter-indent": [
false
],
"ter-arrow-parens": false,
"array-bracket-spacing": false,
"max-line-length": [
true,
150
],
"trailing-comma": [
false
],
"ter-prefer-arrow-callback": [
false
],
"variable-name": [
false
],
"function-name": [
false
],
"space-before-function-paren": false,
"import-name": [
false
],
"align": [
false
],
"semicolor": [
false
],
"radix": [
false
]
},
"rulesDirectory": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment