Skip to content

Commit

Permalink
Bump @biomejs/biome from 1.5.2 to 1.5.3 (#3442)
Browse files Browse the repository at this point in the history
* Bump @biomejs/biome from 1.5.2 to 1.5.3

Bumps [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) from 1.5.2 to 1.5.3.
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/cli/v1.5.3/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* disable useExhaustiveDependencies for now

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nicolas Stepien <[email protected]>
  • Loading branch information
dependabot[bot] and nstepien committed Jan 29, 2024
1 parent e423af7 commit e6e7623
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
"noUnusedVariables": "warn",
"noVoidElementsWithChildren": "warn",
"noVoidTypeReturn": "warn",
"useExhaustiveDependencies": "warn",
"useExhaustiveDependencies": "off",
"useHookAtTopLevel": "warn",
"useIsNan": "warn",
"useValidForDirection": "warn",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.21.5",
"@biomejs/biome": "1.5.2",
"@biomejs/biome": "1.5.3",
"@faker-js/faker": "^8.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
"@linaria/core": "^6.0.0",
Expand Down
1 change: 0 additions & 1 deletion website/demos/CommonFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,6 @@ export default function CommonFeatures({ direction }: Props) {
const [sortColumns, setSortColumns] = useState<readonly SortColumn[]>([]);
const [selectedRows, setSelectedRows] = useState((): ReadonlySet<number> => new Set());

// biome-ignore lint/correctness/useExhaustiveDependencies: countries won't change
const countries = useMemo((): readonly string[] => {
return [...new Set(rows.map((r) => r.country))].sort(new Intl.Collator().compare);
// eslint-disable-next-line react-hooks/exhaustive-deps
Expand Down

0 comments on commit e6e7623

Please sign in to comment.