We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cef8d6 commit 36b13dbCopy full SHA for 36b13db
packages/bezier-vscode/src/server.ts
@@ -90,8 +90,9 @@ const tokenGroupPatterns = {
90
shadow: /box-shadow:/,
91
gradient: /background:|background-image:/,
92
'z-index': /z-index:/,
93
- // FIXME: delete Exclude when dimension token is removed
94
-} satisfies Record<Exclude<TokenGroup, 'dimension'>, RegExp>
+ // NOTE: (@ed) `source-size` is used in the internal component
+ // so we don't need to suggest it
95
+} satisfies Record<Exclude<TokenGroup, 'source-size'>, RegExp>
96
97
const allCompletionItems = Object.values(completionItemsByTokenGroup).flat()
98
0 commit comments