https://github.com/anonrig/find-biome-alternatives
Fetches the slowest 100 eslint rules in your path and gives you Biome equivalents
https://github.com/anonrig/find-biome-alternatives
Last synced: 11 months ago
JSON representation
Fetches the slowest 100 eslint rules in your path and gives you Biome equivalents
- Host: GitHub
- URL: https://github.com/anonrig/find-biome-alternatives
- Owner: anonrig
- Created: 2024-01-29T22:38:05.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T22:46:31.000Z (over 2 years ago)
- Last Synced: 2025-04-15T12:52:34.821Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://npmjs.com/package/find-biome-alternatives
- Size: 3.91 KB
- Stars: 41
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Find Biome Alternative
Fetches the slowest 100 eslint rules in your path and gives you Biome equivalents
```sh
❯ npx find-biome-alternatives --cwd=../sentry --cmd='yarn eslint static/app' --cache
┌ Using cache available at /Users/yagiz/coding/suggest-biome-rules/.biome-rule-cache
│
◇ Fetching markdown took 74.631667ms
│
└ Here are the rules matching your slowest 100 Eslint rules
┌─────────┬──────────────────────────────┬─────────────────────────────┐
│ (index) │ eslint │ biome │
├─────────┼──────────────────────────────┼─────────────────────────────┤
│ 0 │ 'no-unreachable' │ 'noUnreachable' │
│ 1 │ 'no-dupe-keys' │ 'noDuplicateObjectKeys' │
│ 2 │ 'no-obj-calls' │ 'noGlobalObjectCalls' │
│ 3 │ 'no-fallthrough' │ 'noFallthroughSwitchClause' │
│ 4 │ 'no-constant-condition' │ 'noConstantCondition' │
│ 5 │ 'no-extra-boolean-cast' │ 'noExtraBooleanCast' │
│ 6 │ 'no-shadow-restricted-names' │ 'noShadowRestrictedNames' │
│ 7 │ 'prefer-const' │ 'useConst' │
│ 8 │ 'no-self-compare' │ 'noSelfCompare' │
└─────────┴──────────────────────────────┴─────────────────────────────┘
```