chore: willboosterify this repo#145
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the @willbooster/wb dependency to version 13.12.13 and modifies the configuration files oxfmt.config.ts and oxlint.config.ts by adding wbfy markers and renaming a variable. The review feedback suggests removing these markers as they are considered redundant and clutter the code, which violates the repository's style guide regarding code simplification.
| // wbfy:start oxfmt-base | ||
| import config from '@willbooster/oxfmt-config'; | ||
| // wbfy:end oxfmt-base | ||
|
|
||
| // wbfy:start oxfmt-export | ||
| export default config; | ||
| // wbfy:end oxfmt-export |
There was a problem hiding this comment.
The added wbfy markers are redundant and clutter the configuration file. Please remove them to simplify the code as per the repository style guide.
References
- Simplify code as much as possible to eliminate redundancy. (link)
| // wbfy:start oxlint-base | ||
| import config from '@willbooster/oxlint-config'; | ||
| import oxlintResolvedConfig from '@willbooster/oxlint-config'; | ||
| // wbfy:end oxlint-base | ||
|
|
||
| // wbfy:start oxlint-export | ||
| export default config; | ||
| export default oxlintResolvedConfig; | ||
| // wbfy:end oxlint-export |
There was a problem hiding this comment.
The added wbfy markers are redundant and clutter the configuration file. Please remove them to simplify the code as per the repository style guide.
References
- Simplify code as much as possible to eliminate redundancy. (link)
No description provided.