Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update biome to 1.7.0 #1280

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"noUnusedVariables": "error",
"useExhaustiveDependencies": "warn"
},
"nursery": {
"noReExportAll": "error"
"performance": {
"recommended": true
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion mono/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@gg-monorepo",
"version": "0.0.1",
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@biomejs/biome": "1.7.0",
"turbo": "1.13.2"
},
"private": true,
Expand Down
60 changes: 30 additions & 30 deletions mono/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion native/app/screens/MainDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default function MainDrawer() {
if (selectedItem) {
activateSheet(selectedItem);
}
}, [selectedItem]);
}, [selectedItem, activateSheet]);

return (
<Drawer.Navigator
Expand Down
2 changes: 1 addition & 1 deletion native/app/store/AccountSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ function addDefinition(baseItem: DestinyItemBase, extras: { characterId: string;
definitionItems.itemSubType = itemDef?.is ?? 0;
definitionItems.tierType = itemDef?.t ?? 0;
definitionItems.destinyClass = itemDef?.c ?? 3;
definitionItems.doesPostmasterPullHaveSideEffects = itemDef?.pm ? true : false;
definitionItems.doesPostmasterPullHaveSideEffects = !!itemDef?.pm;
definitionItems.maxStackSize = itemDef?.m ?? 1;

definitionItems.calculatedWaterMark = calculateWaterMark(baseItem, itemDef);
Expand Down
2 changes: 1 addition & 1 deletion native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
},
"devDependencies": {
"@babel/core": "7.24.4",
"@biomejs/biome": "1.6.4",
"@biomejs/biome": "1.7.0",
"@total-typescript/ts-reset": "0.5.1",
"@types/base-64": "1.0.2",
"@types/react": "18.2.78",
Expand Down
56 changes: 28 additions & 28 deletions native/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.