chore: Suppress lint warnings in CI (confuses AI) (#10021)

Auto fix where possible in pre-commit hook
This commit is contained in:
Tom Moor
2025-08-27 03:03:14 -04:00
committed by GitHub
parent 386eebb117
commit 52d420bd98
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ export default {
// TypeScript files
"**/*.[tj]s?(x)": [
(f) => `prettier --write ${f.join(" ")}`,
(f) => (f.length > 20 ? `yarn lint` : `oxlint ${f.join(" ")}`),
(f) => (f.length > 20 ? `yarn lint --fix` : `oxlint ${f.join(" ")} --fix`),
() => `yarn build:i18n`,
() => "git add shared/i18n/locales/en_US/translation.json",
],