Skip to content

Commit

Permalink
feature: replace tslint with eslint for improved linting (#138)
Browse files Browse the repository at this point in the history
* feature: replace tslint with eslint for improved linting

* fix: all new eslint issues
  • Loading branch information
byCedric authored Jul 13, 2019
1 parent 64ca7fd commit fafa74a
Show file tree
Hide file tree
Showing 8 changed files with 468 additions and 82 deletions.
19 changes: 19 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true
},
"extends": [
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/indent": ["error", "tab"],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-var-requires": "off"
}
}
Loading

0 comments on commit fafa74a

Please sign in to comment.