Movatterモバイル変換


[0]ホーム

URL:


Skip to content
Biome
DiscordGitHubMastodonOpen CollectiveYouTubeBlueSkyRSS
Blog

Biome v2.0 beta

The brand of the project. It says "Biome, toolchain of the web"The brand of the project. It says "Biome, toolchain of the web"
Arend van Beelen jr.
Arend van Beelen jr.
Carson McManus
Carson McManus
Biome Core Team, Biome Maintainers
Biome Core Team, Biome Maintainers

After hard work from our team, Biome’s long-awaited 2.0 release is nearing completion. It will be packed with many large features, so we would like your help testing it with a public beta!

If you would like to try it out, you can update Biome and migrate your configuration using the following commands:

Terminal window
npminstall--save-dev--save-exact@biomejs/biome@beta
npx@biomejs/biome@betamigrate

Also, make sure you use the prereleases of our IDE extensions. The stable versions of our extensions are not yet prepared for Biome 2.0!

Documentation for the upcoming release can be found athttps://next.biomejs.dev/.

While the final 2.0 release may still have small changes in its final feature set, here’s what you can expect in the beta:

  • Plugins: You can write custom lint rules using GritQL.
  • Domains: Domains help to group lint rules by technology, framework, or well, domain. Thanks to domains, your default set of recommended lint rules will only include those that are relevant to your project.
  • Multi-file analysis: Lint rules can now apply analysis based on information from other files, enabling rules such asnoImportCycles.
  • noFloatingPromises: Still a proof-of-concept, but our first type-aware lint rule is making an appearance.
  • OurImport Organizer has seen a major revamp.
  • Assists: Biome Assist can provide actions without diagnostics, such as sorting object keys.
  • Improved suppressions: Suppress a rule in an entire file using// biome-ignore-all, or suppress a range using// biome-ignore-start and// biome-ignore-end.
  • HTML formatter: Still in preview, this is the first time we ship an HTML formatter.
  • Many,many, fixes, new lint rules, and other improvements.

Biome 2.0 comes with our first iteration ofLinter Plugins.

These plugins are still limited in scope: They allow for matching code snippets and reporting diagnostics on them.

Here is an example of a plugin that reports on all usages ofObject.assign():

`$fn($args)` where {
$fn <: `Object.assign`,
register_diagnostic(
span = $fn,
message = "Prefer object spread instead of `Object.assign()`"
)
}

It’s a first step, but we have plenty of ideas for making them more powerful, and we’ll eagerly hear from our users on what they would like to see prioritised.

We’ve introduced a new linter feature:Domains.

Domains are a new way to organise lint rules by technology, framework, or well, domain. Right now, we have identified four domains:

  • next: Rules related to Next.js.
  • react: Rules related to React.
  • solid: Rules related to Solid.js.
  • test: Rules related to testing, regardless of framework or library.

You can enable and disable rules that belong to a domain together:

biome.jsonc
{
"linter": {
"domains": {
"test":"all",// all rules that belong to this domain are enabled
"react":"recommended",// only the recommended rules from this domain are enabled
"solid":"none"//rulesrelatedtoSolidaredisabled
}
}
}

But it gets better: Biome will automatically inspect yourpackage.json and determine which domains should be enabled by default. For instance, if you havereact defined as one of your dependencies, the default setting for thereact domain automatically becomesrecommended.

This way, Biome’s total set of recommended rules should be most relevant to your specific project needs.

And finally, domains can add global variables to thejavascript.globals setting. This should make Biome even easier to setup.

Before version 2.0, Biome lint rules could only operate on one file at a time. This brought us far, but many of the more interesting rules require information from other files too.

To accomplish this, we have added afile scanner to Biome that scans all the files in your project and indexes them, similar to what an LSP service might do in your IDE. We’re not going to beat around the bush: Scanning projects means that Biome has become slower for many projects. But we do believe the ability to do multi-file analysis is worth it. And without a scanner, multi-file analysis would becomeeven slower, as rules would need to perform ad-hoc file system access individually.

That said, this is a beta, and there are certainly more opportunities to improve our scanner and its performance. If you have a repository where you feel our performance became unacceptably slow, please reach out andfile an issue.

For now, we have a few interesting rules that can make use of our multi-file analysis:

  • noImportCycles is able to look at import statements and detect cycles between them.
  • noPrivateImports is a new rule based on theuseImportRestrictions nursery rule from Biome 1.x, and inspired by ESLint’splugin-import-access. It forbids importing symbols with an@private JSDoc tag from other modules, and forbids importing symbols with an@package tag if the importing file is not in the same folder or one of its subfolders.
  • useImportExtensions has been improved because it can now determine the actual extension that needs to be used for an import, instead of guessing based on hueristics.

Finally, we’ve also designed the multi-file analysis with monorepos in mind. While full monorepo support may not make it in time for the 2.0 release, we expect to be able to deliver more on this front soon.

With Biome’s linter we have always strived to provide a battery-included approach to linting. This means we’re not just aiming to replace ESLint, but also its plugins. One of the hardest plugins to replace istypescript-eslint.

Biome has featured some rules fromtypescript-eslint for a while now, but we could never replace all rules, because they relied on type information for their analysis. And in order to get type information,typescript-eslint relies ontsc itself, which is rather slow and also complicates setup.

This is about to change. With Biome 2.0, we’re introducing a first version of thenoFloatingPromises rule, one of the most-requested rules that relies on type information. In fairness, we should not consider it more than a proof-of-concept right now, because there are some notable limitations to its capabilities:

  • It doesn’t understand complex types yet.
  • It cannot do type inference yet.
  • It can currently only analyse types that occur in the same file.

Still, its capabilities are sufficient to catch some of the low-hanging fruit. Consider this small snippet:

example.js
asyncfunctionreturnsPromise() {/* ... */ }
returnsPromise().then(()=> {});

It will trigger the following diagnostic:

example.js:3:1 lint/nursery/noFloatingPromises ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ℹ A “floating” Promise was found, meaning it is not properly handled and could lead to ignored errors or unexpected behavior.
1 │ async function returnsPromise() { /* ... */ }
2 │
> 3 │ returnsPromise().then(() => {});
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5 │
ℹ This happens when a Promise is not awaited, lacks a .catch or .then rejection handler, or is not explicitly ignored using the void operator.

As you can guess, we intend to expand this rule’s capabilities over time. And with our new multi-file analysis in place, we expect to be able to make serious strides with this. Stay tuned for more announcements on this front!

In Biome 1.x, our Import Organizer had several limitations:

  • Groups of imports or exports would be considered separatechunks, meaning they would be sorted independently. This meant the followingdidn’t work as expected:

    example.js
    import { lib2 }from"library2";
    import { util }from"./utils.js";
    import { lib1 }from"library1";

    It would correctly sort"library1" to be placed above"./utils.js", but it wouldn’t be able tocarry it over the newline to the top. What we got was this:

    organizer_v1.js
    import { lib2 }from"library2";
    import { lib1 }from"library1";
    import { util }from"./utils.js";

    But instead, what we really wanted was this:

    organizer_v2.js
    import { lib1 }from"library1";
    import { lib2 }from"library2";
    import { util }from"./utils.js";
  • Separate imports from the same module wouldn’t be merged. Consider the following example:

    example.js
    import { util1 }from"./utils.js";
    import { util2 }from"./utils.js";

    Nothing would be done to merge these import statements, whereas what we would have wanted was this:

    organizer_v2.js
    import { util1, util2 }from"./utils.js";
  • No custom ordering could be configured. Maybe you didn’t really like the default approach of ordering by “distance” from the source file that you’re importing from. Maybe you wanted to organise like this:

    organizer_v2.js
    import { open }from"node:fs";
    import { internalLib1 }from"@company/library1";
    import { internalLib2 }from"@company/library2";
    import { lib1 }from"library1";

In Biome 2.0, all these limitations are lifted. In fact, if you look at the examples above, all snippets labeledorganizer_v2.js can be produced just like that by our new import organizer.

Other improvements include support for organizingexport statements, support for “detached” comments for explicitly separating import chunks if necessary, and import attribute sorting.

You can find the documentation on the new import organizer athttps://next.biomejs.dev/assist/actions/organize-imports/.

The Import Organizer was always a bit of a special case in Biome. It was neither part of the linter, nor of the formatter. This was because we didn’t want it to show diagnostics the way the linter does, while its organizing features went beyond what we expect from the formatter.

In Biome 2.0, we have generalised such use cases in the form of Biome Assist. The assist is meant to provideactions, which are similar to thefixes in lint rules, but without the diagnostics.

The Import Organizer has become an assist, but we’ve started using this approach for new assists too:useSortedKeys can sort keys in object literals, whileuseSortedAttributes can sort attributes in JSX.

For more information about assists, see:https://next.biomejs.dev/assist/

In addition to the// biome-ignore comments we already supported, we now support// biome-ignore-all for suppressing a lint rule or the formatter in an entire file.

We also added support for suppression ranges using// biome-ignore-start and// biome-ignore-end. Note that// biome-ignore-end is optional in case you want to let a range run until the end of the file.

For more information about suppressions, see:https://next.biomejs.dev/linter/#suppress-lint-rules

After a few months of hard work, we are happy to announce that the HTML formatter is now ready for users to try out and start reporting bugs! This is a huge step towards Biome fully supporting HTML-ish templating languages used in frameworks like Vue and Svelte.

The HTML formatter only touches actual.html files for now, so no formatting of html in.vue or.svelte files yet. It also won’t format embedded languages like JavaScript or CSS yet. HTML’s options likeattributePosition,bracketSameLine, andwhitespaceSensitivity have been implemented.

The HTML formatter is still pretty experimental, so it will remaindisabled by default for the full 2.0 release. At the time of writing, Biome is able to parse the grand majority of Prettier’s HTML tests, and format 46/124 of them correctly. Despite not matching Prettier yet, we’re pretty confident that itshould output documents that are formatted adequately without destroying anything. If you find a case where it doesn’t,please let us know!

You can enable the HTML formatter by adding the following to your config file:

{
"html": {
"formatter": {
"enabled":true
}
}
}

Several new rules have added since v1.9:

  • BREAKING: The configuration fieldsinclude andignore have been replaced with a singleincludes field.
  • BREAKING: Reworked some recommended rules recommended to be less pedantic and blocking. This is a breaking change if your project relied on those rules to block the CI in case of violations. If you used themigrate command, the behaviour should remain as before.
  • BREAKING: Thestyle rules aren’t recommended anymore. If you used themigrate command, the behaviour should remain as before.
  • BREAKING: Removed deprecated rules:
    • noConsoleLog
    • noInvalidNewBuiltin
    • noNewSymbol
    • useShorthandArrayType
    • useSingleCaseStatement
  • BREAKING: Many deprecated options, including some that still referenced the old Rome name, have been removed.
  • Added a new optionjavascript.parser.jsxEverywhere to control whether Biome should expect JSX syntax in.js/.mjs/.cjs files.
  • Improved monorepo support: The rulenoUndeclaredDependencies now works correctly in monorepos by using the nearestpackage.json file, instead of only the root one.
  • We have enabled support for.editorconfig files by default.
  • Changed default formatting ofpackage.json to align better with formatting by package managers.

For the full list of changes, please refer to ourchangelog.


[8]ページ先頭

©2009-2025 Movatter.jp