-
Notifications
You must be signed in to change notification settings - Fork 2.2k
fix: ignore js build files in eslint #9525
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR attempts to prevent ESLint from checking build files in development mode by adding an ignore pattern for JavaScript files in the packages/insomnia/src/ directory.
Key Changes:
- Added
packages/insomnia/src/*.jsto the ESLint ignore patterns
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
✅ Circular References ReportGenerated at: 2026-01-13T03:56:28.704Z Summary
Click to view all circular references in PR (167)Click to view all circular references in base branch (167)Analysis✅ No Change: This PR does not introduce or remove any circular references. This report was generated automatically by comparing against the |
Background
Eslint checks some unnecessary js files when running it locally, and affects checking the real errors
Changes
Ignore js build files, such as
hidden-window.js,hidden-window-preload.js.