fix: Allow formatting toolbar to appear with cell selection (#10299)

This commit is contained in:
Tom Moor
2025-10-05 16:54:30 +02:00
committed by GitHub
parent 0df42cb4c7
commit ebf2029539
15 changed files with 220 additions and 69 deletions
+4 -1
View File
@@ -3,7 +3,10 @@ export default {
// TypeScript files
"**/*.[tj]s?(x)": [
(f) => `prettier --write ${f.join(" ")}`,
(f) => (f.length > 20 ? `yarn lint --fix` : `oxlint ${f.join(" ")} --fix --type-aware`),
(f) =>
f.length > 20
? `yarn lint --fix`
: `oxlint ${f.join(" ")} --fix --type-aware`,
() => `yarn build:i18n`,
() => "git add shared/i18n/locales/en_US/translation.json",
],