Skip to content

Instantly share code, notes, and snippets.

@RobinBuschmann
Last active January 7, 2017 17:15
Show Gist options
  • Save RobinBuschmann/b9e48d79be11a0b57298b64dbdb34562 to your computer and use it in GitHub Desktop.
Save RobinBuschmann/b9e48d79be11a0b57298b64dbdb34562 to your computer and use it in GitHub Desktop.
{
"extends": "tslint:latest",
"rules": {
"arrow-parens": false,
"class-name": false,
"no-empty": false,
"no-trailing-whitespace": false,
"object-literal-sort-keys": false,
"interface-name": true,
"no-consecutive-blank-lines": false,
"trailing-comma": false,
"ordered-imports": false,
"max-line-length": [true, 140],
"member-access": false,
"no-string-literal": false,
"curly": false,
"only-arrow-functions": false,
"typedef": [
true,
"call-signature",
"parameter"
],
"no-var-requires": false,
"quotemark": ["single"],
"triple-equals": true,
"member-ordering": [true,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"variable-name": [true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment