Skip to content

Instantly share code, notes, and snippets.

@rummelonp
Last active August 13, 2018 13:39
Show Gist options
  • Save rummelonp/08cf073729bcff35992d5f7c35a636ed to your computer and use it in GitHub Desktop.
Save rummelonp/08cf073729bcff35992d5f7c35a636ed to your computer and use it in GitHub Desktop.
{
"extends": "tslint:latest",
"rules": {
"array-type": [true, "generic"],
"arrow-parens": [true, "ban-single-arg-parens"],
"curly": [true, "ignore-same-line"],
"interface-name": false,
"max-classes-per-file": false,
"max-line-length": [true, 140],
"member-access": false,
"no-implicit-dependencies": false,
"no-namespace": [true, "allow-declarations"],
"no-submodule-imports": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"semicolon": [true, "never"],
"trailing-comma": [true, { "multiline": "never", "singleline": "never" }],
"typedef-whitespace": false,
"quotemark": [true, "single"]
},
"linterOptions": {
"exclude": ["**/*.js"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment