-
-
Notifications
You must be signed in to change notification settings - Fork 33
feat: track CSS custom properties on CSSSourceCode #411
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
Open
Copilot
wants to merge
5
commits into
main
Choose a base branch
from
copilot/track-css-variables-sourcecode
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4266600
Initial plan
Copilot e8ea7e8
feat: add CSS custom property tracking to CSSSourceCode and refactor …
Copilot 63d930c
refactor: remove extra AST traversal in no-invalid-properties, use ru…
Copilot 735ebbe
fix: apply Prettier formatting to resolve CI failures
Copilot 051fea2
fix: handle nested var() in fallback, move test helpers to top level
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Oops, something went wrong.
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.
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.
Should this also handle nested
var()calls in fallback positions, such asvar(--a, var(--b))?It seems that
no-invalid-propertiesalready has custom logic for resolving nested fallbackvar()references. If this RFC is meant to centralize that behavior inCSSSourceCode, I think this case need to be covered as well. Otherwise, rules may still need their own fallback parsing logic.Just for reference, according to MDN, the following syntax is valid:
https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Values/var#syntax
When I tested it against a nested
var()function, it failed:The stdout is logged as follows:
{ type: 'Function', loc: { source: '<unknown>', start: { offset: 11, line: 1, column: 12 }, end: { offset: 47, line: 1, column: 48 } }, name: 'var', children: [ { type: 'Identifier', loc: [Object], name: '--my-color-1' }, { type: 'Operator', loc: [Object], value: ',' }, { type: 'Raw', loc: [Object], value: ' var(--my-color-2)' } ] } [ { type: 'Function', loc: { source: '<unknown>', start: [Object], end: [Object] }, name: 'var', children: [ [Object], [Object], [Object] ] } ]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.
Added
#extractNestedVarRefsprivate method that re-parsesRawfallback text using the CSS parser and tracks any nestedvar()references found. It handles arbitrary nesting depth by recursing. Location info is adjusted to map back to the original source positions viaadjustLoc/adjustAllLocshelpers. Two new tests cover single-level and 3-level deep nesting. Commit: 051fea2