Skip to content

Commit

Permalink
chore(deps): upgrade eslint to version 8.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Oct 18, 2021
1 parent 84ab368 commit f8c56a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-node-resolve": "13.0.5",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"babel-plugin-add-module-exports": "1.0.4",
"eslint": "7.32.0",
"eslint": "8.0.1",
"eslint-config-google": "0.14.0",
"fancy-log": "1.3.3",
"fs-extra": "10.0.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 < 8) {
if (major < 12) {
log.debug(`Skipping ESLint because of node version compatibility (currenly in used: ${nodeVersion})`);
return Promise.resolve();
}
Expand Down

0 comments on commit f8c56a9

Please sign in to comment.