fix: resolve stylelint errors and dedupe gallery carousel SCSS - #399
Merged
Conversation
Deploying adamj-github-io with
|
| Latest commit: |
91c58ef
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://43f5a0ef.adamj-github-io.pages.dev |
| Branch Preview URL: | https://claude-lint-build-cleanup.adamj-github-io.pages.dev |
Fix all 23 stylelint errors across the SCSS partials (deprecated property notation, alpha/hex formatting, redundant longhand, blank-line rules), with the two clip deprecation cases on .skip-link replaced by the modern clip-path equivalent. Also collapse the 15x-repeated carousel slide/thumbnail selector blocks in _gallery.scss into two Sass @for loops, verified byte-equivalent via sorted diff of compiled output.
slugify is required directly in .eleventy.js but was only present as a transitive dependency, relying on pnpm's lockfile resolution rather than an explicit declaration. Add it to devDependencies alongside the other build-time requires. Also remove the unused build:sass-nomap script, drop the pointless npm-run-all wrapper around the single build:sass-site task by inlining it into build:sass directly, and switch the bump script from npm to pnpm for consistency with the project's pnpm-only enforcement.
docs/workbox-v7.4.1/ is recreated on every build:sw run but was untracked by an earlier commit without ever being added to .gitignore, so it kept reappearing as a stray untracked directory.
Rebuild docs/ to reconcile the gallery/stylelint dedupe changes with main's card-shadow consolidation and dependency cleanup.
AdamJ
force-pushed
the
claude/lint-build-cleanup
branch
from
June 28, 2026 19:47
91c58ef to
56c529f
Compare
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.
Fix all 23 stylelint errors across the SCSS partials (deprecated property notation, alpha/hex formatting, redundant longhand, blank-line rules), with the two clip deprecation cases on
.skip-linkreplaced by the modern clip-path equivalent. Also collapse the 15x-repeated carousel slide/thumbnail selector blocks in_gallery.scssinto two Sass@forloops, verified byte-equivalent via sorted diff of compiled output.