-
Notifications
You must be signed in to change notification settings - Fork 16
fix: resolve incomplete linting across projects #1151
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
Conversation
|
View your CI Pipeline Execution ↗ for commit 1501cbf
☁️ Nx Cloud last updated this comment at |
@code-pushup/ci
@code-pushup/cli
@code-pushup/core
@code-pushup/create-cli
@code-pushup/models
@code-pushup/nx-plugin
@code-pushup/axe-plugin
@code-pushup/coverage-plugin
@code-pushup/eslint-plugin
@code-pushup/js-packages-plugin
@code-pushup/jsdocs-plugin
@code-pushup/lighthouse-plugin
@code-pushup/typescript-plugin
@code-pushup/utils
@code-pushup/models-transformers
commit: |
Code PushUp🤨 Code PushUp report has both improvements and regressions – compared current commit 02b09b0 with previous commit 96e03ef. 🕵️ See full comparison in Code PushUp portal 🔍 🏷️ Categories👍 2 groups improved, 👎 1 group regressed, 👍 7 audits improved, 👎 2 audits regressed, 13 audits changed without impacting score🗃️ Groups
20 other groups are unchanged. 🛡️ Audits
655 other audits are unchanged. |
matejchalk
left a comment
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.
f8cf90a to
4656f5c
Compare
Fixes incomplete linting configuration that prevented ESLint from checking most TypeScript files in the repository (revealed in this discussion).
The
nx.jsonlint target was missing quotes around the glob pattern.Without quotes, the glob pattern was expanded before reaching ESLint. As a result, instead of matching all TypeScript files recursively, only the top-level files in each project were linted.
Once all files were properly linted, fixed the newly discovered errors across multiple projects.