Skip to content

Commit

Permalink
add eslint no-shadow + fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BuZZ-T committed Dec 12, 2021
1 parent 11c8bca commit 42ca99e
Show file tree
Hide file tree
Showing 9 changed files with 426 additions and 336 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/explicit-module-boundary-types": "error",
"no-console": "error",
"jest/expect-expect": "error"
"jest/expect-expect": "error",
"no-shadow": "off", // replaced by ts-eslint rule below
"@typescript-eslint/no-shadow": "error"
}
}
Loading

0 comments on commit 42ca99e

Please sign in to comment.