Skip to content

Commit

Permalink
Merge pull request #1020 from akv-platform/remove-implicit-dependencies
Browse files Browse the repository at this point in the history
Remove implicit dependencies
  • Loading branch information
marko-zivic-93 committed May 23, 2023
2 parents 03af7c3 + e0ca8aa commit 02989dc
Show file tree
Hide file tree
Showing 3 changed files with 165 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.js
Expand Up @@ -7,7 +7,7 @@ module.exports = {
'eslint-config-prettier'
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'eslint-plugin-jest'],
plugins: ['@typescript-eslint', 'eslint-plugin-node', 'eslint-plugin-jest'],
rules: {
'@typescript-eslint/no-require-imports': 'error',
'@typescript-eslint/no-non-null-assertion': 'off',
Expand All @@ -28,7 +28,8 @@ module.exports = {
}
],
'no-control-regex': 'off',
'no-constant-condition': ['error', {checkLoops: false}]
'no-constant-condition': ['error', {checkLoops: false}],
'node/no-extraneous-import': 'error'
},
overrides: [
{
Expand Down
161 changes: 161 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Expand Up @@ -56,6 +56,7 @@
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"jest-silent-reporter": "^0.5.0",
Expand Down

0 comments on commit 02989dc

Please sign in to comment.