Skip to content

Commit

Permalink
Implement linting and fix issues (#17)
Browse files Browse the repository at this point in the history
* add eslint for style checking

* style: fix linting errors

* style: fix lint warnings

* lint when running tests

* fix running lint command locally

* style: fix linting issues in tests
  • Loading branch information
TremayneChrist authored Jan 30, 2019
1 parent a93d944 commit d5d85c3
Show file tree
Hide file tree
Showing 21 changed files with 953 additions and 365 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["plugin:@typescript-eslint/recommended"],
"rules": {
"@typescript-eslint/indent": ["error", 2]
}
}
Loading

0 comments on commit d5d85c3

Please sign in to comment.