qlty check in Qlty Cloud is flagging eslint issues that aren't present when running it via Qlty CLI
#2131
Unanswered
samaisthorpe
asked this question in
Q&A
Replies: 1 comment 1 reply
-
|
Hi @samaisthorpe -- Thanks for this report. Can you please provide a URL to the Project on Qlty Cloud as well as a URL for the PR? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Question
When running

qlty checkvia Qlty Cloud in GitHub actions, a large number of TypeScript related eslint issues are raised such as this:These issues are not raised locally after running
qlty checkvia the CLI. This gives the impression that for whatever reason Qlty Cloud can't find the project'stsconfig.json(although I'm not entirely sure what's causing this).How to reproduce (optional)
No response
Expected behavior (optional)
The results from
qlty checkin Qlty Cloud should match the results from running it via the CLI.CLI Version
qlty 0.539.0 macos-arm64 (a9eee4f 2025-06-02)
Information about Qlty configuration and environment (optional)
OS: macOS
tsconfig.json:
{ "compilerOptions": { "types": ["vitest/globals"], "target": "ES2020", "module": "commonjs", "lib": [ "es2020", "dom" ], "declaration": true, "strict": true, "noImplicitAny": true, "strictNullChecks": true, "noImplicitThis": true, "alwaysStrict": true, "noUnusedLocals": false, "noUnusedParameters": false, "noImplicitReturns": true, "noFallthroughCasesInSwitch": false, "inlineSourceMap": true, "inlineSources": true, "experimentalDecorators": true, "strictPropertyInitialization": false, "allowSyntheticDefaultImports": true, "esModuleInterop": true, "typeRoots": ["./node_modules"], "paths": { "@helpers/*": ["./lib/helpers/*"], "@constructs/*": ["./lib/resources/constructs/*"] } }, "ts-node": { "require": ["tsconfig-paths/register"], "compilerOptions": { "paths": { "@helpers/*": ["./lib/helpers/*"], "@constructs/*": ["./lib/resources/constructs/*"] }, } }, "exclude": [ "node_modules", "cdk.out" ], }eslint.config.mjs:
Beta Was this translation helpful? Give feedback.
All reactions