export default { '*.{js,jsx,ts,tsx,json,md,yml,yaml}': [ 'biome check --write --no-errors-on-unmatched', ], '*.{js,jsx,ts,tsx}': [ 'oxlint --max-warnings 0 --fix', 'eslint --max-warnings 0 --fix', ], '*.{ts,tsx}': () => ['tsc --noEmit'], '**/*': ['secretlint --secretlintignore .gitignore'], '*.{js,ts,tsx,json,md}': ['cspell --no-must-find-files'], 'package.json': ['sort-package-json'], }