Skip to content

Commit

Permalink
add tslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
irahopkinson committed Oct 3, 2017
1 parent b5460dc commit 93a8ea6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extends": "tslint:recommended",
"rules": {
"quotemark": [true, "single"],
"trailing-comma": [true, { "multiline": "never", "singline": "never" }],
"arrow-parens": [true, "ban-single-arg-parens"],
"member-access": [true, "no-public"],
"object-literal-sort-keys": false,
"no-empty": false,
"prefer-const": { "severity": "warning" },
"member-ordering": [false],
"curly": [true, "ignore-same-line"],
"interface-name": [true, "never-prefix"],
"max-classes-per-file": [false],
"radix": { "severity": "warning" },
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"no-console": false
}
}

0 comments on commit 93a8ea6

Please sign in to comment.