Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[ci] Add lint:no-cache npm script and update workflows
- Add lint:no-cache script to package.json for linting without cache
- Update workflow files to use npm script instead of npx eslint --no-ignore
- Add .eslintcache to .gitignore
  • Loading branch information
christian-byrne committed Aug 12, 2025
commit b4788d7cb26ee41a19a6ededb5be3718a16f467c
2 changes: 1 addition & 1 deletion .github/workflows/update-manager-types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Lint generated types
run: |
echo "Linting generated ComfyUI-Manager API types..."
npx eslint --no-ignore --fix ./src/types/generatedManagerTypes.ts
npm run lint:no-cache -- --fix ./src/types/generatedManagerTypes.ts

- name: Check for changes
id: check-changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-registry-types.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Lint generated types
run: |
echo "Linting generated Comfy Registry API types..."
npx eslint --no-ignore --fix ./src/types/comfyRegistryTypes.ts
npm run lint:no-cache -- --fix ./src/types/comfyRegistryTypes.ts

- name: Check for changes
id: check-changes
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# ESLint cache
.eslintcache

node_modules
dist
dist-ssr
Expand Down