[READ-ONLY] Mirror of https://github.com/lukebennett88/luke-ui. luke-ui.netlify.app/
0

Configure Feed

Select the types of activity you want to include in your feed.

update format scripts to exclude templates from checks

Luke Bennett (Jun 9, 2026, 11:17 AM +1000) 328faa99 a32c4b02

+2 -2
+2 -2
packages/turbo-generators/package.json
··· 3 3 "version": "0.0.0", 4 4 "type": "module", 5 5 "scripts": { 6 - "check:format": "pnpm exec oxfmt --check .", 6 + "check:format": "pnpm exec oxfmt --check . '!templates/**'", 7 7 "check:lint": "pnpm exec oxlint . --type-aware", 8 - "fix:format": "pnpm exec oxfmt .", 8 + "fix:format": "pnpm exec oxfmt . '!templates/**'", 9 9 "fix:lint": "pnpm exec oxlint . --type-aware --fix", 10 10 "generate:component": "tsx scripts/generate-component.ts" 11 11 },