Skip to content

Commit

Permalink
Eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blaumeise20 committed Jan 25, 2021
1 parent 6964d7e commit 582eacd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
"@typescript-eslint",
"eslint-plugin-jest"
],
"extends": [
"eslint:recommended",
Expand All @@ -12,7 +13,8 @@
"rules": {
"quotes": ["error", "double"],
"indent": ["error", 4],
"semi": "error"
"semi": "error",
"no-undef": "off"
},
"env": {
"jest/globals": true
Expand Down
9 changes: 9 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"typescript": "^4.1.3"
"typescript": "^4.1.3",
"eslint-plugin-jest": "^24.1.3"
}
}

0 comments on commit 582eacd

Please sign in to comment.