fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

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

fix: revert unrelated eslint and lint-staged changes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+2 -3
+1 -1
eslint.config.js
··· 58 58 '**/dist/', 59 59 '**/node_modules/', 60 60 'temp/', 61 - '**/.gen/', 61 + 'dev/.gen/', 62 62 'examples/openapi-ts-nestjs/src/client/**/*.ts', 63 63 'examples/openapi-ts-openai/src/client/**/*.ts', 64 64 '**/test/generated/',
+1 -2
lint-staged.config.js
··· 1 1 export default { 2 - '*': 'oxfmt', 3 - '*.{js,jsx,ts,tsx,mjs,mts,cjs,cts,vue,svelte}': 'eslint --fix', 2 + '*': ['pnpm format', 'pnpm lint:fix'], 4 3 };