stylelint-processor-arbitrary-tags icon indicating copy to clipboard operation
stylelint-processor-arbitrary-tags copied to clipboard

Does this processor supported SASS style?

Open uplus opened this issue 6 years ago • 1 comments

The following error occurred when executing stylelint **/*.vue.

components/organisms/Navigation.vue
 75:3  ✖  Unknown word   CssSyntaxError

Line 75 is the 3rd line of this code.

<style scoped lang="sass">
.navbar
  .navbar-brand
</style>
stylelint.config.js
module.exports = {
  processors: ['@mapbox/stylelint-processor-arbitrary-tags'],
  extends: [
    'stylelint-config-standard',
    'stylelint-config-sass-guidelines'
  ]
}

uplus avatar Jul 10 '19 17:07 uplus

you can force synax: stylelint **/*.vue --syntax scss

luckylooke avatar May 31 '20 05:05 luckylooke