Skip to content

Commit

Permalink
Fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed Sep 17, 2020
1 parent 65f8fa9 commit 9a860e3
Show file tree
Hide file tree
Showing 3 changed files with 1,870 additions and 1,653 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Expand Up @@ -17,7 +17,8 @@ module.exports = {
"no-var": "error",
"no-undef": "off",
"no-extra-semi": "off", // doesn't get along well with prettier
"no-unused-vars": "off" // got typescript for that
"no-unused-vars": "off", // got typescript for that,
"no-redeclare": "off" // No idea what it does, but it dies
},
globals: {
process: "readable",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -67,7 +67,7 @@
"@types/jest": "^25.2.1",
"@types/node": "^11.15.12",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"@typescript-eslint/parser": "^4.1.1",
"babel-jest": "^25.4.0",
"conditional-type-checks": "^1.0.5",
"coveralls": "^3.1.0",
Expand Down

0 comments on commit 9a860e3

Please sign in to comment.