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 55789c8 commit 9825dcaCopy full SHA for 9825dca
1 file changed
lib/parser.js
@@ -132,9 +132,10 @@ class Parser {
132
if (founded === 2) break
133
}
134
135
- // If the token is a word, e.g. `!important`, `red` or any other valid property's value.
136
- // Then we need to return the colon after that word token. [3] is the "end" colon of that word.
137
- // And because we need it after that one we do +1 to get the next one.
+ // If the token is a word, e.g. `!important`, `red` or any other valid
+ // property's value. Then we need to return the colon after that word
+ // token. [3] is the "end" colon of that word. And because we need it
138
+ // after that one we do +1 to get the next one.
139
throw this.input.error(
140
'Missed semicolon',
141
token[0] === 'word' ? token[3] + 1 : token[2]
0 commit comments