Releases: biomejs/biome
Biome CLI v2.2.2
2.2.2
Patch Changes
-
#7266
b270bb5Thanks @ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted. -
#7281
6436180Thanks @ematipico! - Fixed an issue where the functionscanProjectwouldn't work as expected. -
#7285
1511d0cThanks @rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes. -
#7249
dff85c0Thanks @ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes. -
#7266
b270bb5Thanks @ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely. -
#7209
679b70eThanks @patrickshipe! - Resolved an overcorrection inuseImportExtensionswhen importing explicit index files.Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.
Example
// Before - import "./sub/index"; + import "./sub/index/index.js"; // After - import "./sub/index"; + import "./sub/index.js";
-
#7270
953f9c6Thanks @arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions. -
#7234
b7aa111Thanks @JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.
-
#7283
0b07f45Thanks @ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using--config-path. -
#7239
1d643d8Thanks @minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside.svelte.test.ts/jsand.svelte.spec.ts/jsfiles. -
#7264
62fdbc8Thanks @ematipico! - Fixed a regression where when using--log-kind-prettywasn't working anymore as expected. -
#7244
660031bThanks @JeetuSuthar! - Fixed #7225: ThenoExtraBooleanCastrule now preserves parentheses when removingBooleancalls inside negations.// Before !Boolean(b0 && b1); // After !(b0 && b1); // instead of !b0 && b1
-
#7298
46a8e93Thanks @unvalley! - Fixed #6695:useNamingConventionnow correctly reports TypeScript parameter properties with modifiers.Previously, constructor parameter properties with modifiers like
privateorreadonlywere not checked against naming conventions. These properties are now treated consistently with regular class properties.
What's Changed
- perf: determine folders more efficiently by @arendjr in #7220
- chore: use
divanfor module graph benchmarks by @arendjr in #7231 - chore: add repository dispatch to kick off docker image build on release by @stathis-alexander in #7235
- fix: correct error message in useIndexOf rule by @JeetuSuthar in #7234
- fix(changelog): correct dead links in 2.2 by @Jayllyz in #7243
- chore: fix image sponsor by @ematipico in #7250
- docs: fix CHANGELOG to reflect operatorLinebreak by @blfpd in #7253
- chore(deps): update github-actions by @renovate[bot] in #7251
- chore(deps): update rust:1.89.0-bookworm docker digest to e090f7b by @renovate[bot] in #7252
- chore(deps): update rust:1.89.0-bullseye docker digest to 5b0defc - autoclosed by @renovate[bot] in #7254
- chore(deps): update dependency @changesets/cli to v2.29.6 by @renovate[bot] in #7255
- fix(lsp): unsafe fixes when pulling code actions by @ematipico in #7249
- feat(linter): auto add Svelte globals for .svelte.test/spec files by @minht11 in #7239
- fix(cli): pretty logger by @ematipico in #7264
- fix(core): resolve issue with rest params in type inference by @arendjr in #7270
- chore: remove duplicated fixture by @arendjr in #7273
- fix(linter): fix
useImportExtensionshandling of index files by @patrickshipe in #7209 - chore: unduplicate branch by @arendjr in #7274
- docs(lint): improve noUndeclaredDependencies by @ematipico in #7272
- fix(wasm):
scanProjectbeing stuck by @ematipico in #7281 - fix(semantic): missing references in namespaces by @ematipico in #7282
- fix(module_graph): limit flattening to hardcoded value by @ematipico in #7266
- fix(migrate): jsonc configuration files by @ematipico in #7283
- feat(grit): add JSX node name mappings for GritQL patterns by @rriski in #7285
- fix(noExtraBooleanCast): preserve parentheses to maintain operator precedence by @JeetuSuthar in #7244
- fix(lint/useNamingConvention): detects ts property parameter with modifier by @unvalley in #7298
- ci: release by @github-actions[bot] in #7238
- ci: release by @github-actions[bot] in #7303
New Contributors
- @stathis-alexander made their first contribution in #7235
- @JeetuSuthar made their first contribution in #7234
- @blfpd made their first contribution in #7253
- @patrickshipe made their first contribution in #7209
- @rriski made their first contribution in #7285
Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/biome@2.2.0...@biomejs/biome@2.2.2
JavaScript APIs v3.0.0
3.0.0
Patch Changes
- Updated dependencies [
527db7f]:- @biomejs/wasm-bundler@2.2.0
- @biomejs/wasm-nodejs@2.2.0
- @biomejs/wasm-web@2.2.0
What's Changed
- feat(cli): enhanced summary reporter by @ematipico in #6731
- feat(biome_js_analyze): allow specifying stable object keys in
useExhaustiveDependenciesconfiguration by @josh- in #6398 - feat(noRestrictedImports): add the patterns option by @sakai-ast in #5506
- feat: support configureable sorting mode for imports, keys and attributes by @nazarhussain in #6506
- feat(wasm): expose new functions by @ematipico in #6896
- ci: sync
nextbranch to the website repo by @siketyan in #7011 - feat(wasm): expose Workspace::scan_project_folder by @siketyan in #7005
- feat(formatter): add option to split binary expressions before operators by @bavalpey in #6159
- feat(qwik): add domain setup and enable some pre-existing rules by @ptkagori in #6923
- feat(core): scanner v2 by @arendjr in #6989
- chore: tweak CodeRabbit by @arendjr in #7132
- perf: minor performance tweaks by @siketyan in #7122
- fix: revive wasm build by @siketyan in #7136
- feat(lint): add
ignoreTypesoption to thenoImportCyclesrule by @siketyan in #7017 - fix: set language of noVueDataObjectDeclaration to js by @dyc3 in #7144
- docs: remove the mention of a fix by @ematipico in #7146
- ci: use
github.shafor dispatch event on release by @siketyan in #7145 - chore(lint): version released rules by @siketyan in #7147
- chore(lint): remove extra
vfrom rule metadata by @siketyan in #7150 - docs(changelog): fix wrong
useConsistentTypeDefinitionsURL by @JamBalaya56562 in #7151 - feat(analyze/js): add
useMaxParamsby @Jayllyz in #7124 - feat(analyze/js): add
noNextAsyncClientComponentrule in Next domain by @Jayllyz in #7081 - refactor(test): make generated snapshot tests have module stucture that matches folder structure by @dyc3 in #7163
- fix(core): included files in nested configurations by @ematipico in #7161
- feat(parser/html): text expressions in attributes by @ematipico in #6907
- feat: promote rules by @ematipico in #7137
- fix(linter): false positive for
noDuplicateFontNamesby @ematipico in #7156 - feat(parse/tailwind): handle most basenames with dashes by @dyc3 in #7068
- feat(parser/tailwind): support arbitrary candidates by @dyc3 in #7086
- refactor: use if-let-chain if possible (applying clippy fixes) by @siketyan in #7169
- build: upgrade to Rust 1.89 by @siketyan in #7170
- feat(resolver): resolve extension alias by @siketyan in #7158
- chore(coderabbit): dont review generated files by @Jayllyz in #7172
- fix(yaml_parser): tokens out of order by @vohoanglong0107 in #7168
- chore(deps): update github-actions by @renovate[bot] in #7178
- chore(deps): update rust crate camino to 1.1.11 by @renovate[bot] in #7180
- chore(deps): update rust crate hashbrown to 0.15.5 by @renovate[bot] in #7181
- chore(deps): update dependency @types/node to v22.17.1 by @renovate[bot] in #7177
- chore(deps): update docker/dockerfile:1 docker digest to 3838752 by @renovate[bot] in #7175
- chore(deps): update @biomejs packages by @renovate[bot] in #7176
- chore(deps): update rust crate proc-macro2 to 1.0.96 by @renovate[bot] in #7182
- chore(deps): update rust crate tower-lsp-server to 0.22.1 by @renovate[bot] in #7183
- chore: fix typos
messsage→messageby @JamBalaya56562 in #7186 - chore: fix typos in biome_cli crates by @JamBalaya56562 in #7185
- feat(lint): add
useBiomeIgnoreFolderandnoBiomeFirstExceptionby @ematipico in #7159 - chore: fix typos in biome css analyze crates by @JamBalaya56562 in #7187
- chore: fix various typos in biome css formatter crates by @JamBalaya56562 in #7190
- docs: fix path to perfectionist docs by @azat-io in #7193
- docs: fix broken link, update rule count by @9romise in #7194
- fix: consider type-only imports as dev dependency by @siketyan in #7171
- chore: add Vercel to sponsors by @arendjr in #7200
- Revert "feat(resolver): resolve extension alias" by @siketyan in #7199
- feat(useConst): don't report uninit variables read befroe to be written by @Conaclos in #7201
- feat(core): add support for
.graphqlsfiles by @avshalomt2 in #7118 - chore: merge
nextintomainby @ematipico in #7167 - fix(core): fix semver handling by @arendjr in #7197
- chore: fix changesets by @ematipico in #7202
- docs: update documentation for
useForOf; fix typos by @Bertie690 in #7204 - chore: fix typos in biome formatter and grit crates by @JamBalaya56562 in #7207
- chore: fix typos in biome html crates by @JamBalaya56562 in #7208
- chore: fix typos in biome crates by @JamBalaya56562 in #7215
- chore: fix typos in biome js analyze crate by @JamBalaya56562 in #7210
- chore: fix typos in biome js formatter crate by @JamBalaya56562 in #7213
- chore: fix various typos across codebase by @JamBalaya56562 in #7216
- ci: release by @github-actions[bot] in #7157
New Contributors
- @josh- made their first contribution in #6398
- @sakai-ast made their first contribution in #5506
- @nazarhussain made their first contribution in #6506
- @bavalpey made their first contribution in #6159
- @azat-io made their first contribution in #7193
- @9romise made their first contribution in #7194
- @avshalomt2 made their first contribution in #7118
- @Bertie690 made their first contribution in #7204
Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/biome@2.1.4...@biomejs/js-api@3.0.0
Biome CLI v2.2.0
2.2.0
Minor Changes
-
#5506
1f8755bThanks @sakai-ast! - ThenoRestrictedImportsrule has been enhanced with a newpatternsoption. This option allows for more flexible and powerful import restrictions using gitignore-style patterns.You can now define patterns to restrict entire groups of modules. For example, you can disallow imports from any path under
import-foo/except forimport-foo/baz.{ "options": { "patterns": [ { "group": ["import-foo/*", "!import-foo/baz"], "message": "import-foo is deprecated, except for modules in import-foo/baz." } ] } }Invalid examples
import foo from "import-foo/foo"; import bar from "import-foo/bar";
Valid examples
import baz from "import-foo/baz";
Additionally, the
patternsoption introducesimportNamePatternto restrict specific import names using regular expressions.
The following example restricts the import names that matchx,yorzletters from modules underimport-foo/.{ "options": { "patterns": [ { "group": ["import-foo/*"], "importNamePattern": "[xyz]" } ] } }Invalid examples
import { x } from "import-foo/foo";
Valid examples
import { foo } from "import-foo/foo";
Furthermore, you can use the
invertImportNamePatternboolean option to reverse this logic. When set to true, only the import names that match theimportNamePatternwill be allowed. The following configuration only allows the import names that matchx,yorzletters from modules underimport-foo/.{ "options": { "patterns": [ { "group": ["import-foo/*"], "importNamePattern": "[xyz]", "invertImportNamePattern": true } ] } }Invalid examples
import { foo } from "import-foo/foo";
Valid examples
import { x } from "import-foo/foo";
-
#6506
90c5d6bThanks @nazarhussain! - Allow customization of the sort order for different sorting actions. These actions now support a sort option:assist/source/useSortedKeysnow has asortOrderoptionassist/source/useSortedAttributesnow has asortOrderoptionassist/source/organizeImportsnow has anidentifierOrderoption
For each of these options, the supported values are the same:
natural. Compares two strings using a natural ASCII order. Uppercase letters come first (e.g.A < a < B < b) and number are compared in a human way (e.g.9<10). This is the default value.lexicographic. Strings are ordered lexicographically by their byte values. This orders Unicode code points based on their positions in the code charts. This is not necessarily the same as “alphabetical” order, which varies by language and locale.
-
#7159
df3afdfThanks @ematipico! - Added the new ruleuseBiomeIgnoreFolder. Since v2.2, Biome correctly prevents the indexing and crawling of folders.However, the correct pattern has changed. This rule attempts to detect incorrect usage, and promote the new pattern:
// biome.json { "files": { "includes": [ - "!dist/**", - "!**/fixtures/**", + "!dist", + "!**/fixtures", ] } } -
#6989
85b1128Thanks @arendjr! - Fixed minor inconsistencies in howfiles.includeswas being handled.Previously, Biome sometimes failed to properly ignore the contents of a folder if you didn't specify the
/**at the end of a glob pattern. This was unfortunate, because it meant we still had to traverse the folder and then apply the glob to every entry inside it.This is no longer an issue and we now recommend to ignore folders without using the
/**suffix. -
#7118
a78e878Thanks @avshalomt2! - Added support for.graphqlsfiles. Biome can now format and lint GraphQL files that have the extension.graphqls -
#6159
f02a296Thanks @bavalpey! - Added a new option to Biome's JavaScript formatter,javascript.formatter.operatorLinebreak, to configure whether long lines should be broken before or after binary operators.For example, the following configuration:
{ formatter: { javascript: { operatorLinebreak: "before", // defaults to "after" }, }, }
Will cause this JavaScript file:
const VERY_LONG_CONDITION_1234123412341234123412341234 = false; if ( VERY_LONG_CONDITION_1234123412341234123412341234 && VERY_LONG_CONDITION_1234123412341234123412341234 && VERY_LONG_CONDITION_1234123412341234123412341234 && VERY_LONG_CONDITION_1234123412341234123412341234 ) { console.log("DONE"); }
to be formatted like this:
const VERY_LONG_CONDITION_1234123412341234123412341234 = false; if ( VERY_LONG_CONDITION_1234123412341234123412341234 && VERY_LONG_CONDITION_1234123412341234123412341234 && VERY_LONG_CONDITION_1234123412341234123412341234 && VERY_LONG_CONDITION_1234123412341234123412341234 ) { console.log("DONE"); }
-
#7137
a653a0fThanks @ematipico! - Promoted multiple lint rules from nursery to stable groups and renamed several rules for consistency.Promoted rules
The following rules have been promoted from nursery to stable groups:
CSS
- Promoted
noImportantStylesto thecomplexitygroup. - Promoted
noUnknownAtRulesto thesuspiciousgroup.
GraphQL
- Promoted
useGraphqlNamedOperationsto thecorrectnessgroup. - Promoted
useGraphqlNamingConventionto thestylegroup.
JavaScript/TypeScript
- Promoted
noExcessiveLinesPerFunctionto thecomplexitygroup. - Promoted
noImplicitCoercionsto thecomplexitygroup. - Promoted
useIndexOfto thecomplexitygroup. - Promoted
noGlobalDirnameFilenameto thecorrectnessgroup. - Promoted
noNestedComponentDefinitionsto thecorrectnessgroup. - Promoted
noProcessGlobalto thecorrectnessgroup. - Promoted
noReactPropAssignmentsto thecorrectnessgroup. - Promoted
noRestrictedElementsto thecorrectnessgroup. - Promoted
noSolidDestructuredPropsto thecorrectnessgroup. - Promoted
useJsonImportAttributesto thecorrectnessgroup. - Promoted
useParseIntRadixto thecorrectnessgroup. - Promoted
useSingleJsDocAsteriskto thecorrectnessgroup. - Promoted
useUniqueElementIdsto thecorrectnessgroup. - Promoted
noAwaitInLoopsto theperformancegroup. - Promoted
noUnwantedPolyfillioto theperformancegroup. - Promoted
useGoogleFontPreconnectto theperformancegroup. - Promoted
useSolidForComponentto theperformancegroup. - Promoted
noMagicNumbersto thestylegroup. - Promoted
useConsistentObjectDefinitionsto thestylegroup. - Promoted
useExportsLastto thestylegroup. - Promoted
useGroupedAccessorPairsto thestylegroup. - Promoted [
useNumericSeparators](https://biomejs.dev/linter/rule...
- Promoted
Biome CLI v2.1.4
2.1.4
Patch Changes
-
#7121
b9642abThanks @arendjr! - Fixed #7111: Imported symbols using aliases are now correctly recognised. -
#7103
80515ecThanks @omasakun! - Fixed #6933 and #6994.When the values of private member assignment expressions, increment expressions, etc. are used, those private members are no longer marked as unused.
-
#6887
0cc38f5Thanks @ptkagori! - Added thenoQwikUseVisibleTaskrule to Qwik.This rule is intended for use in Qwik applications to warn about the use of
useVisibleTask$()functions which require careful consideration before use.Invalid:
useVisibleTask$(() => { console.log("Component is visible"); });
Valid:
useTask$(() => { console.log("Task executed"); });
-
#7084
50ca155Thanks @ematipico! - Added the new nursery rulenoUnnecessararyConditions, which detects whenever some conditions don't
change during the life cycle of the program, and truthy or false, hence deemed redundant.For example, the following snippets will trigger the rule:
// Always truthy literal conditions if (true) { console.log("always runs"); }
// Unnecessary condition on constrained string type function foo(arg: "bar" | "baz") { if (arg) { // This check is unnecessary } }
-
#6887
0cc38f5Thanks @ptkagori! - Added theuseImageSizerule to Biome.The
useImageSizerule enforces the use of width and height attributes on<img>elements for performance reasons. This rule is intended to prevent layout shifts and improve Core Web Vitals by ensuring images have explicit dimensions.Invalid:
<img src="/image.png" /> <img src="https://example.com/image.png" /> <img src="/image.png" width="200" /> <img src="/image.png" height="200" />
Valid:
<img width="200" height="600" src="/static/images/portrait-01.webp" /> <img width="100" height="100" src="https://example.com/image.png" />
-
#6887
0cc38f5Thanks @ptkagori! - Added theuseAnchorHrefrule to Biome.The
useAnchorHrefrule enforces the presence of anhrefattribute on<a>elements in JSX. This rule is intended to ensure that anchor elements are always valid and accessible.Invalid:
<a>Link</a>
<a target="_blank">External</a>
Valid:
<a href="/home">Home</a>
<a href="https://example.com" target="_blank"> External </a>
-
#7100
29fcb05Thanks @Jayllyz! - Added the rulenoNonNullAssertedOptionalChain.This rule prevents the use of non-null assertions (
!) immediately after optional chaining expressions (?.). Optional chaining is designed to safely handle nullable values by returningundefinedwhen the chain encountersnullorundefined. Using a non-null assertion defeats this purpose and can lead to runtime errors.// Invalid - non-null assertion after optional chaining obj?.prop!; obj?.method()!; obj?.[key]!; obj?.prop!; // Valid - proper optional chaining usage obj?.prop; obj?.method(); obj?.prop ?? defaultValue; obj!.prop?.method();
-
#7129
9f4538aThanks @drwpow! - Removed option, combobox, listbox roles from useSemanticElements suggestions -
#7106
236deaaThanks @arendjr! - Fixed #6985: Inference of return types no longer mistakenly picks up return types of nested functions. -
#7102
d3118c6Thanks @omasakun! - Fixed #7101:noUnusedPrivateClassMembersnow handles members declared as part of constructor arguments:- If a class member defined in a constructor argument is only used within the constructor, it removes the
privatemodifier and makes it a plain method argument. - If it is not used at all, it will prefix it with an underscore, similar to
noUnusedFunctionParameter.
- If a class member defined in a constructor argument is only used within the constructor, it removes the
-
#7104
5395297Thanks @harxki! - Reverting to prevent regressions around ref handling -
#7143
1a6933aThanks @siketyan! - Fixed #6799: ThenoImportCyclesrule now ignores type-only imports if the newignoreTypesoption is enabled (enabled by default).[!WARNING]
Breaking Change: ThenoImportCyclesrule no longer detects import cycles that include one or more type-only imports by default.
To keep the old behaviour, you can turn off theignoreTypesoption explicitly:{ "linter": { "rules": { "nursery": { "noImportCycles": { "options": { "ignoreTypes": false } } } } } } -
#7099
6cc84cbThanks @arendjr! - Fixed #7062: Biome now correctly considers extended configs when determining the mode for the scanner. -
#6887
0cc38f5Thanks @ptkagori! - Added theuseQwikClasslistrule to Biome.This rule is intended for use in Qwik applications to encourage the use of the built-in
classprop (which accepts a string, object, or array) instead of theclassnamesutility library.Invalid:
<div class={classnames({ active: true, disabled: false })} />
Valid:
<div classlist={{ active: true, disabled: false }} />
-
#7019
57c15e6Thanks @fireairforce! - Added support in the JS parser forimport source(a stage3 proposal). The syntax looks like:import source foo from "<specifier>";
-
#7053
655049eThanks @jakeleventhal! - Added theuseConsistentTypeDefinitionsrule.This rule enforces consistent usage of either
interfaceortypefor object type definitions in TypeScript.The rule accepts an option to specify the preferred style:
interface(default): Prefer usinginterfacefor object type definitionstype: Prefer usingtypefor object type definitions
Examples:
// With default option (interface) // ❌ Invalid type Point = { x: number; y: number }; // ✅ Valid interface Point { x: number; y: number; } // With option { style: "type" } // ❌ Invalid interface Point { x: number; y: number; } // ✅ Valid type Point = { x: number; y: number };
The rule will automatically fix simple cases where conversion is straightforward.
What's Changed
- ci: use faster runners on Windows by @ematipico in #7041
- chore: use own semver parser by @ematipico in #7061
- docs(ana...
Biome CLI v2.1.3
2.1.3
Patch Changes
-
#7057
634a667Thanks @mdevils! - Added the rulenoVueReservedKeys, which prevents the use of reserved Vue keys.It prevents the use of Vue reserved keys such as those starting with
# @biomejs/biome (like$el,$data,$props) and keys starting with_` in data properties, which can cause conflicts and unexpected behavior in Vue components.Invalid example
<script> export default { data: { $el: "", _foo: "bar", }, }; </script>
<script> export default { computed: { $data() { return this.someData; }, }, }; </script>
Valid examples
<script> export default { data() { return { message: "Hello Vue!", count: 0, }; }, }; </script>
<script> export default { computed: { displayMessage() { return this.message; }, }, }; </script>
-
#6941
734d708Thanks @JamBalaya56562! - Added@eslint-react/no-nested-component-definitionsas a rule source fornoNestedComponentDefinitions. Now it will get picked up bybiome migrate --eslint. -
#6463
0a16d54Thanks @JamBalaya56562! - Fixed a website link for theuseComponentExportOnlyModuleslinter rule to point to the correct URL. -
#6944
e53f2feThanks @sterliakov! - Fixed #6910: Biome now ignores type casts and assertions when evaluating numbers fornoMagicNumbersrule. -
#6991
476cd55Thanks @denbezrukov! - Fixed #6973: Add support for parsing the :active-view-transition-type() pseudo-class:active-view-transition-type(first second) { }
-
#6992
0b1e194Thanks @ematipico! - Added a new JSON rule callednoQuickfixBiome, which disallow the use of code actionquickfix.biomeinside code editor settings. -
#6943
249306dThanks @JamBalaya56562! - Fixed@vitest/eslint-pluginsource url. -
#6947
4c7ed0fThanks @JamBalaya56562! - Fixed ESLint migration for the ruleprefer-forfromeslint-plugin-solidto Biome'suseForComponent. -
#6976
72ebadcThanks @siketyan! - Fixed #6692: The rulesnoUnusedVariablesandnoUnusedFunctionParametersno longer cause an infinite loop when the suggested name is not applicable (e.g. the suggested name is already declared in the scope). -
#6990
333f5d0Thanks @rvanlaarhoven! - Fixed the documentation URL forlint/correctness/noUnknownPseudoClass -
#7000
4021165Thanks @harxki! - Fixed #6795:noUnassignedVariablesnow correctly recognizes variables used in JSXrefattributes. -
#7044
b091ddfThanks @ematipico! - Fixed #6622, now the ruleuseSemanticElementsworks for JSX self-closing elements too. -
#7014
c4864e8Thanks @siketyan! - Fixed #6516: Thebiome migratecommand no longer break the member list with trailing comments. -
#6979
29cb6daThanks @unvalley! - Fixed #6767:useSortedClassesnow correctly removes leading and trailing whitespace in className.Previously, trailing spaces in className were not fully removed.
// Think we have this code: <div className="text-sm font-bold " /> // Before: applied fix, but a trailing space was preserved <div className="font-bold text-sm " /> // After: applied fix, trailing spaces removed <div className="font-bold text-sm" />
-
#7055
ee4828dThanks @dyc3! - Added the nursery ruleuseReactFunctionComponents. This rule enforces the preference to use function components instead of class components.Valid:
function Foo() { return <div>Hello, world!</div>; }
Invalid:
class Foo extends React.Component { render() { return <div>Hello, world!</div>; } }
-
#6924
2d21be9Thanks @ematipico! - Fixed #113, where the Biome Language Server didn't correctly update the diagnostics when the configuration file is modified in the editor. Now the diagnostics are correctly updated every time the configuration file is modified and saved. -
#6931
e6b2380Thanks @arendjr! - Fixed #6915:useHookAtTopLevelno longer hangs when rules call themselves recursively. -
#7012
01c0ab4Thanks @siketyan! - Fixed #5837: Invalid suppression comments such asbiome-ignore-all-startorbiome-ignore-all-endno longer causes a panic. -
#6949
48462f8Thanks @fireairforce! - Support parseimport defer(which is a stage3 proposal). The syntax look like this:import defer * as foo from "<specifier>";
-
#6938
5feb5a6Thanks @vladimir-ivanov! - Fixed #6919 and #6920:
useReadonlyClassPropertiesnow does checks for mutations in async class methods.Example:
class Counter3 { private counter: number; async count() { this.counter = 1; const counterString = `${this.counter++}`; } }
-
#6942
cfda528Thanks @sterliakov! - Fixed #6939. Biome now understandsthisbinding in classes outside of methods.
What's Changed
- docs: explain how to document options by @ematipico in #6916
- chore: fix changelog by @dyc3 in #6917
- fix: update
useComponentExportOnlyModuleswebsite link by @JamBalaya56562 in #6463 - fix(lsp): update diagnostics on watched files by @ematipico in #6924
- fix(linter): fix recursive hooks by @arendjr in #6931
- perf: introduce
Pathtype by @arendjr in #6935 - ci: add French, Spanish and Ukrainian to labeler by @JamBalaya56562 in #6926
- refactor: add
no-nested-component-definitionsrule...
Biome CLI v2.1.2
2.1.2
Patch Changes
-
#6865
b35bf64Thanks @denbezrukov! - Fix #6485: Handle multiple semicolons correctly in blocks (#6485)div { box-sizing: border-box; color: red; }
-
#6798
3579ffaThanks @dyc3! - Fixed #6762, Biome now knows that~/.config/zed/settings.jsonand~/.config/Code/User/settings.jsonallows comments by default. -
#6839
4cd62d8Thanks @ematipico! - Fixed #6838, where the Biome File Watcher incorrectly watched and stored ignored files, causing possible memory leaks when those files were dynamically created (e.g. built files). -
#6879
0059cd9Thanks @denbezrukov! - Refactor: remove one level of indirection for CSS declarations with semicolon
Previously, accessing a declaration from a list required an extra step:item .as_any_css_declaration_with_semicolon() .as_css_declaration_with_semicolon()
Now, it can be done directly with:
item.as_css_declaration_with_semicolon()
-
#6839
4cd62d8Thanks @ematipico! - Fixed a bug where the Biome Language Server didn't correctly ignore specific files whenvcs.useIgnoreFileis set totrue. -
#6884
5ff50f8Thanks @arendjr! - Improved the performance ofnoImportCyclesby ~30%. -
#6903
241dd9eThanks @arendjr! - Fixed #6829: Fixed a false positive reported byuseImportExtensionswhen importing a.jsfile that had a matching.d.tsfile in the same folder. -
#6846
446112eThanks @darricheng! - Fixed an issue where biome was using the wrong string quotes when the classes string has quotes, resulting in invalid code after applying the fix. -
#6823
eebc48eThanks @arendjr! - Improved #6172: Optimised the way function arguments are stored in Biome's type inference. This led to about 10% performance improvement inRedisCommander.d.tsand about 2% on@next/fonttype definitions. -
#6878
3402976Thanks @ematipico! - Fixed a bug where the Biome Language Server would apply an unsafe fix when using the code actionquickfix.biome.Now Biome no longer applies an unsafe code fix when using the code action
quickfix.biome. -
#6794
4d5fc0eThanks @vladimir-ivanov! - Fixed #6719: ThenoInvalidUseBeforeDeclarationrule covers additional use cases.Examples:
type Bar = { [BAR]: true }; const BAR = "bar";
interface Bar { child: { grandChild: { [BAR]: typeof BAR; enumFoo: EnumFoo } }; } const BAR = "bar"; enum EnumFoo { BAR = "bar", }
-
#6863
531e97eThanks @dyc3! - Biome now considers whether the linter is enabled when figuring out how the project should be scanned. Resolves #6815. -
#6832
bdbc2b1Thanks @togami2864! - Fixed #6165: Fixed false negative innoUnusedPrivateClassMembersrule when checking member usage in classes -
#6839
4cd62d8Thanks @ematipico! - Fixed a bug where the root ignore file wasn't correctly loaded during the scanning phase, causing false positives and incorrect expectations among users.Now, when using
vcs.useIgnoreFile, the the globs specified in the ignore file from the project root will have the same semantics as thefiles.includessetting of the root configuration.Refer to the relative web page to understand how they work.
-
#6898
5beb024Thanks @arendjr! - Fixed #6891: Improved type inference for array indices.Example:
const numbers: number[]; numbers[42]; // This now infers to `number | undefined`.
-
#6809
8192451Thanks @arendjr! - Fixed #6796: Fixed a false positive that happened innoFloatingPromiseswhen calling functions that were declared as part offor ... ofsyntax insideasyncfunctions.Instead, the variables declared inside
for ... ofloops are now correctly
inferred if the expression being iterated evaluates to anArray(support for other iterables will follow later).Invalid example
const txStatements: Array<(tx) => Promise<any>> = []; db.transaction((tx: any) => { for (const stmt of txStatements) { // We correctly flag this resolves to a `Promise`: stmt(tx); } });
Valid example
async function valid(db) { const txStatements: Array<(tx: any) => void> = [(tx) => tx.insert().run()]; db.transaction((tx: any) => { for (const stmt of txStatements) { // We don't flag a false positive here anymore: stmt(tx); } }); }
-
#6757
13a0818Thanks @mdevils! - Added the rulenoVueReservedProps, resolves #6309.It prevents the use of reserved Vue prop names such as
keyandrefwhich can cause conflicts and unexpected behavior in Vue components.Invalid example
import { defineComponent } from "vue"; export default defineComponent({ props: ["ref", "key", "foo"], });
<script setup> defineProps({ ref: String, key: String, foo: String, }); </script>
Valid examples
import { defineComponent } from "vue"; export default defineComponent({ props: ["foo"], });
<script setup> defineProps({ foo: String }); </script>
-
#6840
1a57b51Thanks @denbezrukov! - Allow multiple identifiers in ::part() pseudo-element selector.::part(first second) { }
-
#6845
4fd44ecThanks @arendjr! - Fixed #6510: The scanner no longer shows diagnostics on inaccessible files unless--verboseis used. -
#6844
b7e2d4dThanks @sterliakov! - Fixed #6837: Fixed regression with multiple consecutive line suppression comments using instances (like// biome-ignore lint/correctness/useExhaustiveDependencies(depName): reason). -
#6818 [
5f3f5a6](https://github.com/bi...
JavaScript APIs v2.0.3
2.0.3
Patch Changes
- #6785
085e3c7Thanks @siketyan! - Fixed #6722: Missingdist/files are now included in the@biomejs/js-apipackage. The previous release haven't fixed the issue properly.
What's Changed
- ci: use
nameinstead ofpatternfor downloading artifact by @siketyan in #6785 - ci: release by @github-actions in #6786
Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/biome@2.1.1...@biomejs/js-api@2.0.3
JavaScript APIs v2.0.2
2.0.2
Warning
Due to a CI problem, this version is broken and not includes necessary files in the package.
Patch Changes
-
#6780
563f3d5Thanks @siketyan! - Fixed #6722: Missingdist/files are now included in the@biomejs/js-apipackage. The previous release haven't fixed the issue properly. -
Updated dependencies []:
- @biomejs/wasm-web@2.1.1
- @biomejs/wasm-bundler@2.1.1
- @biomejs/wasm-nodejs@2.1.1
What's Changed
- ci: correct restore path of the artifact by @siketyan in #6780
- fix(wasm): serialize map as a plain object by @siketyan in #6781
- ci: release by @github-actions in #6779
- docs: update contribution guide and pull request template by @ematipico in #6664
Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/js-api@2.0.1...@biomejs/js-api@2.0.2
JavaScript APIs v2.0.1
2.0.1
Warning
Due to a CI problem, this version is broken and not includes necessary files in the package.
Patch Changes
- #6776
08652d0Thanks @siketyan! - Fixed #6722: Missingdist/files are now included in the@biomejs/js-apipackage.
What's Changed
- ci: download js-api artifacts before publish by @siketyan in #6776
- ci: release by @github-actions in #6778
- fix(noFocusedTests): fix
fitfalse positive by @dyc3 in #6761
Full Changelog: https://github.com/biomejs/biome/compare/@biomejs/biome@2.1.0...@biomejs/js-api@2.0.1
JavaScript APIs v2.0.0
2.0.0
Warning
Due to a CI problem, this version is broken and not includes necessary files in the package.
Minor Changes
-
#6535
d8c08e1Thanks @regseb! - Biome's JavaScript Bindings now have specific subpath exports for the three packages:import { Biome } from "@biomejs/js-api/bundler";import { Biome } from "@biomejs/js-api/nodejs";import { Biome } from "@biomejs/js-api/web";
These new subpath exports load only TypeScript declarations, whereas the default export loads declarations for all three packages. This was a problem if you checked your code with
tsc.-
Old usage with default export (no subpath):
import { Biome, Distribution } from "@biomejs/js-api"; const biome = await Biome.create({ distribution: Distribution.NODE });
-
New usage with a specific subpath export:
import { Biome } from "@biomejs/js-api/nodejs"; const biome = new Biome();
Patch Changes
- Updated dependencies []:
- @biomejs/wasm-web@2.1.0
- @biomejs/wasm-bundler@2.1.0
- @biomejs/wasm-nodejs@2.1.0
What's Changed
- feat(core): support import namespaces by @arendjr in #6303
- feat(core): support
export *syntax by @arendjr in #6311 - fix(linter): prevent false positives in
noMisusedPromisesby @arendjr in #6315 - perf: use
TypeStorein global resolver by @arendjr in #6318 - perf: resolve and map types in single pass by @arendjr in #6319
- perf: deduplicate types by @arendjr in #6324
- chore: add
swrfixtures by @arendjr in #6339 - fix(resolver): resolve type definitions for JavaScript files by @arendjr in #6343
- feat(core): flatten intersections + call signatures by @arendjr in #6404
- perf: preallocate type store by @arendjr in #6421
- perf: store types behind
Arcs by @arendjr in #6442 - feat: add nx.json project.json to Well-known files by @ianzone in #6488
- feat(linter): handle arrays of Promises in
noFloatingPromisesby @arendjr in #6512 - fix(core): handle ternary in type alias by @arendjr in #6520
- fix(core): infer method return types by @arendjr in #6525
- fix(core): infer types of properties with getters by @arendjr in #6531
- chore: add test case by @arendjr in #6532
- feat(core): handle logical operators by @arendjr in #6550
- ci: fix JSON payload release dispatch by @ematipico in #6580
- chore: remove disclaimer on
noFloatingPromisesby @arendjr in #6579 - chore: update
nextby @arendjr in #6581 - feat(biome_js_analyse): added new rule noMagicNumbers by @vladimir-ivanov in #6562
- chore(justfile): adjust indentation and remove extra blank lines in
justfileby @paulo9mv in #6568 - refactor(useSortedKeys): transfer trailing separator upon sorting by @Conaclos in #6587
- fix(lsp): fix all should check for embedded languages by @ematipico in #6594
- feat(core): implement conditional handling by @arendjr in #6593
- chore: update contribution guide to include vladimir ivanov as a maintainer by @vladimir-ivanov in #6564
- fix(biome_js_analyze): fix JsDocTypeCollectorVisitior to also walk on JsStaticMemberAssignment by @daivinhtran in #6600
- docs: add mdevils to maintainers by @mdevils in #6612
- chore(lint): fix document of the
noMagicNumbersrule that produces invalid MDX by @siketyan in #6598 - refactor: extract out a
biome_line_indexcrate by @DavisVaughan in #6222 - fix(biome-js-analyze): fixed the diagnostic message for noFocusedTests to display the offending fn name by @vladimir-ivanov in #6599
- chore: add
syntaxparser directive to Dockerfile by @JamBalaya56562 in #6619 - feat(core): port SyntaxNodePtr and AstPtr from rowan by @rmehri01 in #6534
- fix(biome-js-analyze): detect json import attribute with trimmed text value instead of plain text value by @Shinyaigeek in #6618
- feat(core): targeted file scanner by @arendjr in #6614
- fix(core): fix extending configs with root field by @arendjr in #6625
- chore(deps): pin docker/dockerfile docker tag to 9857836 by @renovate in #6626
- chore(deps): update dependency @types/node to v22.15.34 by @renovate in #6627
- fix(deps): update @biomejs packages by @renovate in #6632
- chore(deps): update rust crate papaya to 0.2.3 by @renovate in #6630
- chore(deps): update rust crate ureq to 3.0.12 by @renovate in #6631
- fix(cli): lax stdin strictness by @ematipico in #6596
- feat(core): infer sequence operator and update operators by @arendjr in #6637
- feat(yaml): overhauling YAML lexer by @vohoanglong0107 in #6481
- feat(wasm): expose MemoryFileSystem via WASM API by @siketyan in #6428
- fix(core): fix inference for boolean that must be truthy by @arendjr in #6641
- fix(biome-js-analyze): update changes by @vladimir-ivanov in #6636
- fix(lsp): add missing checks for capability dynamic registration support by @skewb1k in #6643
- fix(js-api): don't use types of others modules by @regseb in #6535
- refactor: share lint rule options by @ematipico in #5543
- perf: optimise ignore checking by @arendjr in #6659
- chore: merge
nextintomainby @arendjr in #6583 - feat(core): offset parsing by @ematipico in #6652
- fix(formatter): void elements with slash by @ematipico in #6663
- fix(lint/noSecrets): calculate entropy with
entropyThresholdoption by @unvalley in #6642 - fix(biome-js-analyze): move no_secrets options inside biome-rules-opt… by @vladimir-ivanov in #6672
- fix(core): css assist by @ematipico in #6682
- fix(format/html): fix mangling of embedded language tags if
whitespaceSensitivityisstrictby @dyc3 in #6673 - feat(parser): parse Astro frontmatter by @ematipico in #6689
- chore(core): add resource to diagnostic by @ematipico in #6685
- fix(parse/html): make
.a valid char in tag names by @dyc3 in #6693 - fix(formatter): trailing commas in json files by @ematipico in #6683
- feat: make enum can be transform in scope by @cqh963852 in #6678
- fix(biome-js-analyze): useReadonlyClassProperties check class getters… by @vladimir-ivanov in #6671
- feat(biome_js_analyse): added new option to rule to ignore unused function parameters by @vladimir-ivanov in #6405
- fix(core): ignore nested configs by @arendjr in #6662
- fix(lint/noImplicitCoercion): false positive for
1 / valueby @unvalley in #6696 - fix(css_formatter): correct spacing in container style queries by @denbezrukov in #6700
- fix(biome_analyze): stop squashing multiple line suppression comments. by @sterliakov in #6650
- fix(noShadow): fix a false positive related to function parameters inside type definitions by @dyc3 in #6709
- fix(biome_js_analyze): correct text range of suppression reason by @sterliakov in #6711
- fix(service): biome/file_features still should return a map instead of an array by @siketyan in #6718
- fix(lint/complexity/useDateNow): improve error message by @wojtekmaj in #6413
- docs: fix typos in CHANGELOG & CONTRIBUTING by @noritaka1166 in https://github.com/biom...