Skip to content
Open
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
6 changes: 5 additions & 1 deletion .ncurc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ module.exports = {
// standard-version is deprecated upstream (final release 9.5.0, May 2022). Hold it so a surprise
// post-deprecation release is never auto-adopted by ncu; the real fix is migrating the release
// script to the maintained fork commit-and-tag-version.
'standard-version'
'standard-version',
// eslint is capped at ^9.x because neostandard@0.13.0 (latest) peer-depends on eslint ^9.0.0.
// ncu -u ignores peer ranges and will jump this to eslint 10, which breaks `npm install`
// outright (ERESOLVE). Bump this only alongside a neostandard release that supports eslint 10.
'eslint'
]
}
3 changes: 3 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const neostandard = require('neostandard')

module.exports = neostandard()
Loading