Closed (fixed)
Project:
Text Resize
Version:
8.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
26 Mar 2026 at 12:43 UTC
Updated:
10 Apr 2026 at 15:30 UTC
Jump to comment: Most recent
In the https://www.drupal.org/project/text_resize/issues/3581614 GitLab pipelines were introduced. Currently, stylelint and ESLint jobs are failing.
Check pipelines.
Fix it.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #3
vitaliyb98 commentedFixed stylelint and eslint jobs
Comment #4
vinodhini.e commentedHi, Tested this on Drupal 10.5.1 and ran coding standards for ESLint and Stylelint.
Initially faced issues in both ESLint and Stylelint.
Applied MR !15 and re-ran the reports.
ESLint issues are resolved.
Still seeing 4 Stylelint issues related to ID selector naming (kebab-case):
web/modules/contrib/text_resize/css/text_resize.css
6:2 Expected id selector "#text_resize_increase" to be kebab-case
18:2 Expected id selector "#text_resize_reset" to be kebab-case
30:2 Expected id selector "#text_resize_decrease" to be kebab-case
42:1 Expected id selector "#text_resize_clear" to be kebab-case
These issues still need to be addressed. Thanks.
Comment #5
vitaliyb98 commented@vinodhini.e thanks for your review!
I'm not sure it's a good idea to rename #text_resize_increase to #text-resize-increase, since users may already have styles bound to this ID. Also, GitLab pipelines don’t report this as an issue (regarding kebab-case).
Comment #6
vinodhini.e commented@vitaliyb98, Thanks for the clarification.
Agree that renaming the IDs could cause backward compatibility issues if existing sites are using them.
Also, since this is not reported in GitLab pipelines, it may not be required to fix now.
So it’s fine to keep the current implementation. Thanks.
Comment #7
vitaliyb98 commentedThanks!
Comment #9
vitaliyb98 commentedMerged, thanks!