@@ -22,7 +22,7 @@ const getDefinition = (atRule, existingDefinitions, requiredDefinitions) => {
22
22
23
23
// eslint-disable-next-line no-cond-assign
24
24
while ( matches = matchValueDefinition . exec ( atRule . params ) ) {
25
- const [ /* match*/ , requiredName , middle , value , end ] = matches ;
25
+ const [ /* match */ , requiredName , middle , value , end ] = matches ;
26
26
// Add to the definitions, knowing that values can refer to each other
27
27
definition [ requiredName ] = replaceAll ( existingDefinitions , value ) ;
28
28
@@ -42,7 +42,7 @@ const getImports = (aliases) => {
42
42
const tokens = matchImport . exec ( alias ) ;
43
43
44
44
if ( tokens ) {
45
- const [ /* match*/ , theirName , myName = theirName ] = tokens ;
45
+ const [ /* match */ , theirName , myName = theirName ] = tokens ;
46
46
imports [ theirName ] = myName ;
47
47
} else {
48
48
throw new Error ( `@value statement "${ alias } " is invalid!` ) ;
@@ -66,7 +66,7 @@ const walk = async (requiredDefinitions, walkFile, root, result) => {
66
66
67
67
if ( matches ) {
68
68
// eslint-disable-next-line prefer-const
69
- let [ /* match*/ , aliases , pathString ] = matches ;
69
+ let [ /* match */ , aliases , pathString ] = matches ;
70
70
71
71
// We can use constants for path names
72
72
if ( existingDefinitions [ pathString ] ) {
0 commit comments