Skip to content

Commit

Permalink
[BREAKING] Require Node.js ^16.18.0 || >=18.0.0 / npm >= 8
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Support for older Node.js and npm releases has been dropped.
Only Node.js ^16.18.0 or >=18.0.0, and npm v8 or higher are supported.
  • Loading branch information
matz3 committed Jan 9, 2023
1 parent 6ed65ea commit f4e250b
Show file tree
Hide file tree
Showing 4 changed files with 2,793 additions and 6,714 deletions.
9 changes: 4 additions & 5 deletions .eslintrc.js
@@ -1,12 +1,9 @@
module.exports = {
"env": {
"node": true,
"es6": true,
"es2022": true,
"jest/globals": true
},
"parserOptions": {
"ecmaVersion": 8
},
"extends": ["eslint:recommended", "google"],
"plugins": [
"jsdoc",
Expand Down Expand Up @@ -48,7 +45,9 @@ module.exports = {
"comma-dangle": "off",
"no-tabs": "off",
"valid-jsdoc": 0,
"jsdoc/check-examples": 2,
// Starting with ESLint v8, it needs to be disabled as it currently can't be supported
// See: https://github.com/eslint/eslint/issues/14745
"jsdoc/check-examples": 0,
"jsdoc/check-param-names": 2,
"jsdoc/check-tag-names": 2,
"jsdoc/check-types": 2,
Expand Down

0 comments on commit f4e250b

Please sign in to comment.