fix(lint): blank line after the multi-line endpointSource property - #664
Merged
Conversation
vue/new-line-between-multi-line-property, LearniqDashboards.vue:540. One error, and it is the only thing standing between development and a green Vue Quality job -- the other 19 findings in that run are warnings. It reached development because every Code Quality run there since 09:54 was CANCELLED by the release loop's concurrency group rather than completing, so nothing reported the regression.
Contributor
Quality Report — ConductionNL/learniq @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ✅ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ✅ | ||||
| stylelint | ✅ | ||||
| build | ✅ | ||||
| check-specs | ✅ | ||||
| format | ✅ | ||||
| check-l10n-js | ✅ | ||||
| check-schema-l10n | ✅ | ||||
| composer | ✅ | ✅ 104/104 | |||
| npm | ✅ | ✅ 648/648 | |||
| app:check-code | ⏭️ | ||||
| info.xml | ✅ | ||||
| REUSE | ❌ | ||||
| PHPUnit | ✅ | ||||
| Newman | ⏭️ | ||||
| Playwright | ✅ | ||||
| Hydra gates | ✅ |
Quality workflow — 2026-08-27 20:08 UTC
Download the full PDF report from the workflow artifacts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
vue/new-line-between-multi-line-propertyatsrc/views/LearniqDashboards.vue:540.One error — and it is the only thing standing between
developmentand a green Vue Quality (eslint) job. The other 19 findings in that run are warnings.Why it reached development
Every Code Quality run on
developmentsince 09:54 today wascancelledby the release loop's concurrency group rather than completing. A cancelled check is not a failed check, so nothing reported the regression — the last completed run (09:54) was green, and the branch has been moving every few minutes since.That is also why sibling PR #660 is green and #661 is red: they were cut from
developmenteither side of the offending commit.Fix
A blank line between the multi-line
endpointSourceproperty andvalueField. This is whateslint --fixproduces; the run reports the error as auto-fixable.Verification is CI's own eslint — there is no local checkout of this app to lint against.