chore(deps): update dependency lint-staged to v15.5.2
This PR contains the following updates:
| Package | Change | Age | Confidence |
|---|---|---|---|
| lint-staged | 15.3.0 -> 15.5.2 |
Release Notes
lint-staged/lint-staged (lint-staged)
v15.5.2
Patch Changes
- #​1544
5561321Thanks @​YimingIsCOLD! - Correctly handle colon (:) characters in staged filenames.
v15.5.1
Patch Changes
-
#​1533
5d53534Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:✖ Failed to get staged files!
v15.5.0
Minor Changes
- #​1526
630af5fThanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier
By default Prettier prefers double quotes.
Previously
- Stage
file.jswith only double quotes"changed to' - Run
git commit -am "I don't like double quotes" - Lint-staged runs
prettier --write file.js, converting all the'back to" - Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
- Commit was not done, original state is restored and single quotes
'are staged
Now
- Stage
file.jswith only double-quotes"changed to' - Run
git commit -am "I don't like double quotes" - Lint-staged runs
prettier --write file.js, converting all the'back to" - Because there are now no changes, lint-staged fails and cancels the commit
- Commit was not done, and there are no staged changes
v15.4.3
Patch Changes
- #​1512
cbfed1dThanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.
v15.4.2
Patch Changes
- #​1509
8827ebfThanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.
v15.4.1
Patch Changes
-
#​1504
1c7a45eThanks @​iiroj! - Default TypeScript config filenames match JS equivalents. -
#​1504
9cc18c9Thanks @​iiroj! - Add missing conditional exports syntax for TypeScript types.
v15.4.0
Minor Changes
-
#​1500
a8ec1ddThanks @​iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:/** * @​filename: lint-staged.config.js * @​type {import('lint-staged').Configuration} */ export default { '*': 'prettier --write', }It's also possible to use the
.tsfile extension for the configuration if your Node.js version supports it. The--experimental-strip-typesflag was introduced in Node.js v22.6.0 and unflagged in v23.6.0, enabling Node.js to execute TypeScript files without additional configuration.export NODE_OPTIONS="--experimental-strip-types" npx lint-staged --config lint-staged.config.ts
Patch Changes
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
â™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.