We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
lossless: true
When using the loseless: true option trailing spaces are removed unexpectedly, even though should be preserved.
loseless: true
Related to stylelint/stylelint#8074 (comment)
const parser = require('postcss-selector-parser'); const selector = ':not(a, )'; console.log('selector:', selector); parser((selectors) => { console.log('parsed:', selectors.toString()); }) .process(selector, { lossless: true })
selector: :not(a, ) parsed: :not(a, )
selector: :not(a, ) parsed: :not(a,)
The text was updated successfully, but these errors were encountered:
selector-not-notation
@ryo-manba pr welcome
Sorry, something went wrong.
No branches or pull requests
When using the
loseless: true
option trailing spaces are removed unexpectedly, even though should be preserved.Related to stylelint/stylelint#8074 (comment)
Code to Reproduce
Expected
Actual
The text was updated successfully, but these errors were encountered: