Skip to content

Commit

Permalink
Add tslint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ikappas committed Feb 16, 2018
1 parent f028e6c commit 0d8300d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@types/mocha": "^2.2.48",
"@types/node": "^8.9.4",
"@types/semver": "^5.5.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}
12 changes: 12 additions & 0 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"rules": {
"no-unused-expression": true,
"no-duplicate-variable": true,
"no-unused-variable": true,
"curly": true,
"class-name": true,
"semicolon": true,
"triple-equals": true
},
"defaultSeverity": "warning"
}

0 comments on commit 0d8300d

Please sign in to comment.