Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.4.0

- Replace `eslint-plugin-node` with `eslint-plugin-n` as the former is no longer maintained.

## 0.3.0

Added missing afterEachFeature & beforeEachFeature globals for `mocha-cakes-2`.
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const moduleConfig = {
node: true,
...(hasES2022Support ? { es2022: true } : { es6: true }),
},
plugins: [ "eslint-plugin-node", "import" ],
plugins: [ "eslint-plugin-n", "import" ],
};

const commonjsConfig = {
Expand All @@ -28,7 +28,7 @@ const commonjsConfig = {
node: true,
es6: true,
},
plugins: [ "eslint-plugin-node" ],
plugins: [ "eslint-plugin-n" ],
};

module.exports = {
Expand Down
Loading