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
Cross posting from: stylelint/stylelint#5377 Demo of the issue can be found here..
If the problem is related to this repo, and I can help in any way or form, please let me know.
Clearly describe the bug
There are false positives when trying to declare a border like this:
border: 1px solid #5e07e2
Which rule, if any, is the bug related to?
unit-no-unknown
What code is needed to reproduce the bug?
.some-class border: 1px solid #5e07e2
What stylelint configuration is needed to reproduce the bug?
module.exports = { extends: ['stylelint-config-standard', 'stylelint-config-prettier'], plugins: ['stylelint-order'], rules: { 'at-rule-no-unknown': null, 'max-nesting-depth': 5, 'order/properties-alphabetical-order': true, 'selector-pseudo-element-no-unknown': [ true, { ignorePseudoElements: ['v-deep'], }, ], }, }
Which version of stylelint are you using?
13.13.1
How are you running stylelint: CLI, PostCSS plugin, Node.js API?
In a Nuxt.js project with:
@nuxtjs/stylelint-module'
Also, through VSCode stylelint-vscode extension.
stylelint-vscode
stylelint.config.js is posted above.
stylelint.config.js
Does the bug relate to non-standard syntax (e.g. SCSS, Less etc.)?
Seems related to using SASS syntax (not SCSS).
What did you expect to happen?
No errors to be raised.
What actually happened (e.g. what warnings or errors did you get)?
The following errors were raised:
ERROR Failed to compile with 1 errors friendly-errors ERROR StylelintError friendly-errors components/BaseSnackbar.vue 37:21 ✖ Unexpected unknown unit "e2" unit-no-unknown
It refers to the e2 at the end of #5e07e2.
e2
#5e07e2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Cross posting from: stylelint/stylelint#5377
Demo of the issue can be found here..
If the problem is related to this repo, and I can help in any way or form, please let me know.
There are false positives when trying to declare a border like this:
unit-no-unknown
13.13.1
In a Nuxt.js project with:
@nuxtjs/stylelint-module'
Also, through VSCode
stylelint-vscode
extension.stylelint.config.js
is posted above.Seems related to using SASS syntax (not SCSS).
No errors to be raised.
The following errors were raised:
ERROR Failed to compile with 1 errors friendly-errors ERROR StylelintError friendly-errors components/BaseSnackbar.vue 37:21 ✖ Unexpected unknown unit "e2" unit-no-unknown
It refers to the
e2
at the end of#5e07e2
.The text was updated successfully, but these errors were encountered: