Skip to content

Commit

Permalink
tslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
bradmartin committed Oct 22, 2018
1 parent 2e36f82 commit e873959
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"rules": {
"class-name": true,
"comment-format": [true, "check-space"],
"indent": [true, "spaces"],
"no-duplicate-variable": true,
"no-eval": true,
"no-debugger": true,
"prefer-const": true,
"no-internal-module": true,
"no-trailing-whitespace": true,
"no-var-keyword": true,
"one-line": [true, "check-open-brace", "check-whitespace"],
"quotemark": [false, "single"],
"semicolon": [true, "always"],
"triple-equals": [true, "allow-null-check"],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
}
],
"variable-name": [true, "ban-keywords"],
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-separator", "check-type"]
}
}

0 comments on commit e873959

Please sign in to comment.