[ci] yarn format
This commit is contained in:
parent
0b16b2ddd0
commit
3db6914137
1 changed files with 1 additions and 16 deletions
|
@ -14,22 +14,7 @@ const CSS_SEPARATORS = new Set([' ', ',', '+', '>', '~']);
|
|||
const KEYFRAME_PERCENT = /\d+\.?\d*%/;
|
||||
|
||||
/** HTML tags that should never get scoped classes */
|
||||
export const NEVER_SCOPED_TAGS = new Set<string>([
|
||||
'base',
|
||||
'body',
|
||||
'font',
|
||||
'frame',
|
||||
'frameset',
|
||||
'head',
|
||||
'html',
|
||||
'link',
|
||||
'meta',
|
||||
'noframes',
|
||||
'noscript',
|
||||
'script',
|
||||
'style',
|
||||
'title'
|
||||
]);
|
||||
export const NEVER_SCOPED_TAGS = new Set<string>(['base', 'body', 'font', 'frame', 'frameset', 'head', 'html', 'link', 'meta', 'noframes', 'noscript', 'script', 'style', 'title']);
|
||||
/**
|
||||
* Scope Rules
|
||||
* Given a selector string (`.btn>span,.nav>span`), add an additional CSS class to every selector (`.btn.myClass>span.myClass,.nav.myClass>span.myClass`)
|
||||
|
|
Loading…
Reference in a new issue