Skip to content

Commit e6e7623

Browse files
Bump @biomejs/biome from 1.5.2 to 1.5.3 (adazzle#3442)
* 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]>
1 parent e423af7 commit e6e7623

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

biome.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
"noUnusedVariables": "warn",
111111
"noVoidElementsWithChildren": "warn",
112112
"noVoidTypeReturn": "warn",
113-
"useExhaustiveDependencies": "warn",
113+
"useExhaustiveDependencies": "off",
114114
"useHookAtTopLevel": "warn",
115115
"useIsNan": "warn",
116116
"useValidForDirection": "warn",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"@babel/preset-react": "^7.18.6",
6262
"@babel/preset-typescript": "^7.18.6",
6363
"@babel/runtime": "^7.21.5",
64-
"@biomejs/biome": "1.5.2",
64+
"@biomejs/biome": "1.5.3",
6565
"@faker-js/faker": "^8.0.0",
6666
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
6767
"@linaria/core": "^6.0.0",

website/demos/CommonFeatures.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,6 @@ export default function CommonFeatures({ direction }: Props) {
305305
const [sortColumns, setSortColumns] = useState<readonly SortColumn[]>([]);
306306
const [selectedRows, setSelectedRows] = useState((): ReadonlySet<number> => new Set());
307307

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

0 commit comments

Comments
 (0)