Skip to content

Commit

Permalink
chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.62.0 to…
Browse files Browse the repository at this point in the history
… 6.2.0 (#1527)

* chore(deps-dev): bump @typescript-eslint/eslint-plugin

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 5.62.0 to 6.2.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.2.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

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

* chore(deps-dev): bump @typescript-eslint/eslint-parser

* fix: do not lint if node <= 14

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mickael Jeanroy <mickael.jeanroy@gmail.com>
  • Loading branch information
dependabot[bot] and mjeanroy committed Sep 2, 2023
1 parent 6971e9c commit e249b11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
"@rollup/plugin-commonjs": "25.0.4",
"@rollup/plugin-node-resolve": "15.2.0",
"@rollup/plugin-virtual": "3.0.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"babel-plugin-add-module-exports": "1.0.4",
"eslint": "8.47.0",
"eslint-config-google": "0.14.0",
Expand Down
2 changes: 1 addition & 1 deletion scripts/lint/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const config = require('../config');
module.exports = function lint() {
const nodeVersion = process.versions.node;
const major = Number(nodeVersion.split('.')[0]);
if (major < 12) {
if (major <= 14) {
log.debug(`Skipping ESLint because of node version compatibility (currenly in used: ${nodeVersion})`);
return Promise.resolve();
}
Expand Down

0 comments on commit e249b11

Please sign in to comment.