Skip to content

Commit fd126d7

Browse files
committed
chore: fix markdown syntax in changelog
1 parent b2da976 commit fd126d7

File tree

1 file changed

+16
-28
lines changed

1 file changed

+16
-28
lines changed

packages/@biomejs/biome/CHANGELOG.md

Lines changed: 16 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -582,8 +582,7 @@
582582
- Promoted [`useSolidForComponent`](https://biomejs.dev/linter/rules/use-solid-for-component) to the
583583
`performance` group.
584584
- Promoted [`noMagicNumbers`](https://biomejs.dev/linter/rules/no-magic-numbers) to the `style` group.
585-
- Promoted [
586-
`useConsistentObjectDefinitions`](https://biomejs.dev/linter/rules/use-consistent-object-definitions) to the
585+
- Promoted [`useConsistentObjectDefinitions`](https://biomejs.dev/linter/rules/use-consistent-object-definitions) to the
587586
`style` group.
588587
- Promoted [`useExportsLast`](https://biomejs.dev/linter/rules/use-exports-last) to the `style` group.
589588
- Promoted [`useGroupedAccessorPairs`](https://biomejs.dev/linter/rules/use-grouped-accessor-pairs) to the
@@ -614,31 +613,20 @@
614613

615614
The following rules have been renamed during promotion. The migration tool will automatically update your configuration:
616615
- Renamed `noAwaitInLoop` to [`noAwaitInLoops`](https://biomejs.dev/linter/rules/no-await-in-loops).
617-
- Renamed `noConstantBinaryExpression` to [
618-
`noConstantBinaryExpressions`](https://biomejs.dev/linter/rules/no-constant-binary-expressions).
619-
- Renamed `noDestructuredProps` to [
620-
`noSolidDestructuredProps`](https://biomejs.dev/linter/rules/no-solid-destructured-props).
616+
- Renamed `noConstantBinaryExpression` to [`noConstantBinaryExpressions`](https://biomejs.dev/linter/rules/no-constant-binary-expressions).
617+
- Renamed `noDestructuredProps` to [`noSolidDestructuredProps`](https://biomejs.dev/linter/rules/no-solid-destructured-props).
621618
- Renamed `noImplicitCoercion` to [`noImplicitCoercions`](https://biomejs.dev/linter/rules/no-implicit-coercions).
622-
- Renamed `noReactPropAssign` to [
623-
`noReactPropAssignments`](https://biomejs.dev/linter/rules/no-react-prop-assignments).
619+
- Renamed `noReactPropAssign` to [`noReactPropAssignments`](https://biomejs.dev/linter/rules/no-react-prop-assignments).
624620
- Renamed `noUnknownAtRule` to [`noUnknownAtRules`](https://biomejs.dev/linter/rules/no-unknown-at-rules).
625-
- Renamed `noUselessBackrefInRegex` to [
626-
`noUselessRegexBackrefs`](https://biomejs.dev/linter/rules/no-useless-regex-backrefs).
627-
- Renamed `useAdjacentGetterSetter` to [
628-
`useGroupedAccessorPairs`](https://biomejs.dev/linter/rules/use-grouped-accessor-pairs).
629-
- Renamed `useConsistentObjectDefinition` to [
630-
`useConsistentObjectDefinitions`](https://biomejs.dev/linter/rules/use-consistent-object-definitions).
631-
- Renamed `useConsistentResponse` to [
632-
`useStaticResponseMethods`](https://biomejs.dev/linter/rules/use-static-response-methods).
621+
- Renamed `noUselessBackrefInRegex` to [`noUselessRegexBackrefs`](https://biomejs.dev/linter/rules/no-useless-regex-backrefs).
622+
- Renamed `useAdjacentGetterSetter` to [`useGroupedAccessorPairs`](https://biomejs.dev/linter/rules/use-grouped-accessor-pairs).
623+
- Renamed `useConsistentObjectDefinition` to [`useConsistentObjectDefinitions`](https://biomejs.dev/linter/rules/use-consistent-object-definitions).
624+
- Renamed `useConsistentResponse` to [`useStaticResponseMethods`](https://biomejs.dev/linter/rules/use-static-response-methods).
633625
- Renamed `useForComponent` to [`useSolidForComponent`](https://biomejs.dev/linter/rules/use-solid-for-component).
634-
- Renamed `useJsonImportAttribute` to [
635-
`useJsonImportAttributes`](https://biomejs.dev/linter/rules/use-json-import-attributes).
636-
- Renamed `useNamedOperation` to [
637-
`useGraphqlNamedOperations`](https://biomejs.dev/linter/rules/use-graphql-named-operations).
638-
- Renamed `useNamingConvention` to [
639-
`useGraphqlNamingConvention`](https://biomejs.dev/linter/rules/use-graphql-naming-convention).
640-
- Renamed `useUnifiedTypeSignature` to [
641-
`useUnifiedTypeSignatures`](https://biomejs.dev/linter/rules/use-unified-type-signatures).
626+
- Renamed `useJsonImportAttribute` to [`useJsonImportAttributes`](https://biomejs.dev/linter/rules/use-json-import-attributes).
627+
- Renamed `useNamedOperation` to [`useGraphqlNamedOperations`](https://biomejs.dev/linter/rules/use-graphql-named-operations).
628+
- Renamed `useNamingConvention` to [`useGraphqlNamingConvention`](https://biomejs.dev/linter/rules/use-graphql-naming-convention).
629+
- Renamed `useUnifiedTypeSignature` to [`useUnifiedTypeSignatures`](https://biomejs.dev/linter/rules/use-unified-type-signatures).
642630

643631
Configuration files using the old rule names will need to be updated. Use the migration tool to automatically update your configuration:
644632

@@ -4730,9 +4718,9 @@
47304718
47314719
Now the rule correctly handles the following cases:
47324720
4733-
- If an element is hidden from screen readers
4734-
- If an element has the presentation role
4735-
- If an element is interactive
4721+
- If an element is hidden from screen readers
4722+
- If an element has the presentation role
4723+
- If an element is interactive
47364724
47374725
```jsx
47384726
// No errors
@@ -4741,7 +4729,7 @@
47414729
<button onClick={() => {}} /> // interactive role
47424730
```
47434731
4744-
This change ensures the rule is more accurate and helpful.
4732+
This change ensures the rule is more accurate and helpful.
47454733
47464734
2. **Checks spread syntax**:
47474735

0 commit comments

Comments
 (0)