0.2.1 • Published 9 months ago

stylelint-wxss v0.2.1

Weekly downloads
9
License
ISC
Repository
github
Last release
9 months ago

stylelint-wxss

A collection of WXSS specific linting rules for stylelint (in a form of plugin).

Installation and usage

npm install stylelint stylelint-wxss

Create the configuration file stylelint.config.js:

module.exports = {
  plugins: ['stylelint-wxss'],
  rules: {
    'wxss/selector-disallowed': ['tag']
  }
}

options.exclude

module.exports = {
  plugins: ['stylelint-wxss'],
  rules: {
    'wxss/selector-disallowed': [['tag'], {
      exclude: {
        tag: ['page']
      }
    }]
  }
}

options.glob

glob options: multimatch

module.exports = {
  plugins: ['stylelint-wxss'],
  rules: {
    'wxss/selector-disallowed': [['tag'], {
      // skip lint files under component directory
      glob: ['**', '!**/component/**']
    }]
  }
}

List of rules

wxss/selector-disallowed

To disable specific selector types.

0.2.1

9 months ago

0.2.0

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago