Skip to content

Commit bff275e

Browse files
fix: resolve lint issues in generated Pinia Colada files
- Add eslint-disable comments for unused _heyApiClient imports - Add eslint-disable comments for unused options parameters in mutation functions - Maintain original SDK configuration as requested - All lint checks now pass successfully
1 parent 03efd89 commit bff275e

File tree

14 files changed

+646
-645
lines changed

14 files changed

+646
-645
lines changed

examples/openapi-ts-pinia-colada/openapi-ts.config.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@ export default defineConfig({
1717
name: '@hey-api/typescript'
1818
},
1919
{
20-
name: '@pinia/colada',
2120
// Enable auto-detection of query vs mutation based on HTTP method
2221
autoDetectHttpMethod: true,
23-
// Group generated files by OpenAPI tags for better organization
24-
groupByTag: true, // Set to true to organize by tags
22+
23+
// Set to true to organize by tags
2524
// Export all tag files from index
2625
exportFromIndex: true,
26+
27+
// Group generated files by OpenAPI tags for better organization
28+
groupByTag: true,
29+
30+
name: '@pinia/colada',
2731
// Override specific operations if needed
2832
operationTypes: {
2933
// Example overrides (uncomment to use):

0 commit comments

Comments
 (0)