Closed afc163 closed 1 month ago
My review is in progress :book: - I will have feedback for you in a few minutes!
[!IMPORTANT]
Review skipped
Review was skipped due to path filters
Files ignored due to path filters (1)
* `package.json` is excluded by `!**/*.json`CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including
**/dist/**
will override the default block on thedist
directory.You can disable this status message by setting the
reviews.review_status
tofalse
in the CodeRabbit configuration file.
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
This pull request updates the package.json
file to modify the configuration of lint-staged
.
File | Summary |
---|---|
package.json | Updated the lint-staged configuration to a single line for *.{js,ts,json,yml} . |
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 91.00%. Comparing base (
71d7edf
) to head (cc7866f
). Report is 2 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
chore: reformat lint-staged configuration in package.json
Summary:
Reformat
lint-staged
configuration inpackage.json
to a single line for readability.Key points:
lint-staged
configuration inpackage.json
to a single line for readability.Generated with :heart: by ellipsis.dev
Description by Korbit AI
What change is being made?
Consolidate the
lint-staged
configuration inpackage.json
by merging the array of commands into a single line.Why are these changes being made?
This change simplifies the
lint-staged
configuration for better readability and maintainability without altering its functionality. The previous multi-line format was unnecessary for a single command.