Skip to content

Commit

Permalink
added tslint.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Ygilany committed Apr 3, 2017
1 parent 9a927cf commit 2a21c14
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"extends": [
"tslint:recommended"
],
"rules": {
"no-unused-expression": true,
"no-duplicate-variable": true,
"no-duplicate-key": true,
"no-unused-variable": true,
"no-trailing-whitespace": false,
"interface-name": [
false
],
"eofline": false,
"curly": true,
"class-name": true,
"semicolon": ["always"],
"triple-equals": true,
"arrow-parens": false,
"no-console": [
"log",
"error"
],
"trailing-comma": [
false
],
"object-literal-sort-keys": false,
"max-classes-per-file": [
false
],
"max-line-length": [
false
],
"quotemark": [
"single"
],
"indent": [
"tabs"
],
"variable-name": [
"check-format",
"allow-leading-underscore"
],
"align": [
false
],
"no-empty-interface":[
false
]
}
}

0 comments on commit 2a21c14

Please sign in to comment.