You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BiomeJS is a linter and formatter written in rust that provides:
Significantly faster linting (upwards of 10x, annecdotally up to ~50x faster than eslint)
97% compatibility score with prettier
Simpler configuration, fewer files (one json file, schema well documented)
Has IDE support for VSCode, Zed, and other editors
After some exploration and discussion with @bmaranville we have decided to use biome for formatting,
and continue using eslint for linting until either biome or oxlint gets to a state where they fully support Vue files, including deeper inspection of the sections.
it does have an option to fix, though it's limited in what it's able to change, similarly to eslint.
I really like biome for my React projects, which is what prompted but unfortunately, biome support for Vue is currently experimental, so i've been holding off on giving this PR more attention until either they introduce wider support, or i can figure out a reasonable way to bypass all the false positives on things like unused variables/functions (that's the biggest offender, because it doesn't parse the <template> section of Vue files.
Alternatively, there's also oxlint which is made by the core Vue team themselves, but I haven't given it a try yet - maybe another avenue worth exploring.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BiomeJS is a linter and formatter written in rust that provides:
After some exploration and discussion with @bmaranville we have decided to use biome for formatting,
and continue using eslint for linting until either biome or oxlint gets to a state where they fully support Vue files, including deeper inspection of the sections.