Skip to content

Commit

Permalink
feat(deps): bump eslint-plugin-import from 2.23.4 to 2.24.2 (#966)
Browse files Browse the repository at this point in the history
* chore(deps): bump eslint-plugin-import from 2.23.4 to 2.24.2

Bumps [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) from 2.23.4 to 2.24.2.
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.23.4...v2.24.2)

---
updated-dependencies:
- dependency-name: eslint-plugin-import
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* feat(import): configure `import/max-dependencies` rule

* fixup! feat(import): configure `import/max-dependencies` rule

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Masafumi Koba <473530+ybiquitous@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and ybiquitous authored Sep 2, 2021
1 parent 77dea45 commit 2f3c438
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 47 deletions.
118 changes: 73 additions & 45 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.25.1",
Expand Down
2 changes: 1 addition & 1 deletion rules/plugins/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
],
"import/first": "error",
"import/group-exports": "off",
"import/max-dependencies": "warn",
"import/max-dependencies": ["warn", { ignoreTypeImports: true, max: 20 }],
"import/newline-after-import": "error",
"import/no-absolute-path": "error",
"import/no-amd": "error",
Expand Down

0 comments on commit 2f3c438

Please sign in to comment.