GunseiKPaseri
GunseiKPaseri
## Summary Implement `useComponentsOnlyModule`( inspired [eslint-plugin-react-refresh](https://www.npmjs.com/package/eslint-plugin-react-refresh)) Closes https://github.com/biomejs/biome/issues/3560 This rule applies only to `.jsx` files. (Since `.js` files are also treated as `.jsx`, it is necessary to check the file...
### Description from https://github.com/biomejs/biome/discussions/3#discussioncomment-9177559 ## react-refresh [react-refresh](https://www.npmjs.com/package/react-refresh) is an official package of react that provides bundler with a Fast Refresh feature that allows real-time updates of running React apps. In...
## Summary Implement useAtIndex([unicorn/prefer-at](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-at.md)) closes https://github.com/biomejs/biome/issues/3943 Making some slight changes. - Ignore `X.slice(-1, unknown)[0]` - Fix `foo[foo.length - a - b]` - Unsupport `lodash` - Unsupoprt option (`checkAllIndexAccess`, `getLastElementFunctions`) ##...
## Summary Implement `noUselessLengthCheck`([unicorn/no-useless-length-check](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-useless-length-check.md)) closes https://github.com/biomejs/biome/issues/3941 ## Test Plan - Added tests and snapshots
## Summary Close #4424 This rule is designed to determine whether an exported item is a component or not and to enforce exporting according to specific guidelines. Exceptionally, components wrapped...