Skip to content

Commit

Permalink
build(deps-dev): replace eslint-plugin-node with eslint-plugin-n (#98)
Browse files Browse the repository at this point in the history
* build(deps-dev): replace eslint-plugin-node with eslint-plugin-n

* build(deps-dev): bump rest of dev deps
  • Loading branch information
Fdawgs authored Sep 2, 2022
1 parent 2920da0 commit 2a57180
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ module.exports = {
extends: [
'standard',
'eslint:recommended',
'plugin:node/recommended'
'plugin:n/recommended'
],
rules: {
'no-unused-vars': [1, { vars: 'all', args: 'none' }],
'node/no-missing-require': 1,
'n/no-missing-require': 1,
'no-constant-condition': 'off',
'no-var': 'off',
'no-redeclare': 1,
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
"devDependencies": {
"@types/node": "^18.0.0",
"busboy": "^1.0.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-n": "^15.2.5",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"photofinish": "^1.8.0",
Expand Down

0 comments on commit 2a57180

Please sign in to comment.