A collection of SCSS specific linting rules for stylelint (in a form of a plugin).
stylelint by itself supports SCSS syntax very well (as well as other preprocessors' syntaxes). Moreover, it introduces some specific rules that can be used to lint SCSS, e.g. to limit nesting
, control the way @-rules
are written. Yet stylelint is in general focused on standard CSS.
stylelint-scss introduces rules specific to SCSS syntax. That said, the rules from this plugin can be used with other syntaxes, like Less or some PostCSS syntaxes. That's why the rules' names are not tied to SCSS only (at-function-pattern
instead of scss-function-pattern
).
The plugin follows stylelint's guidelines (about rule names, testing and so on).
stylelint-scss is a plugin for stylelint, so it's meant to be used with it. First, install stylelint-scss (and stylelint, if you haven't done so yet) via NPM:
npm install stylelint stylelint-scss
Create the .stylelintrc.json
config file (or open the existing one), add stylelint-scss
to the plugins array and the rules you need to the rules list. All rules from stylelint-scss need to be namespaced with scss
.
{
"plugins": [
"stylelint-scss"
],
"rules": {
"scss/dollar-variable-pattern": "^foo",
"scss/selector-no-redundant-nesting-selector": true,
...
}
}
Please refer to stylelint docs for the detailed info on using this linter.
Here are stylelint-scss' rules, grouped by the thing they apply to (just like in stylelint).
at-extend-no-missing-placeholder
: Disallow at-extends (@extend
) with missing placeholders.
at-function-pattern
: Specify a pattern for Sass/SCSS-like function names.
at-import-no-partial-leading-underscore
: Disallow leading underscore in partial names in@import
.at-import-partial-extension-blacklist
: Specify blacklist of disallowed file extensions for partial names in@import
commands.at-import-partial-extension-whitelist
: Specify whitelist of allowed file extensions for partial names in@import
commands.
at-mixin-argumentless-call-parentheses
: Require or disallow parentheses in argumentless@mixin
calls.at-mixin-pattern
: Specify a pattern for Sass/SCSS-like mixin names.
dollar-variable-no-missing-interpolation
: Disallow Sass variables that are used without interpolation with CSS features that use custom identifiers.dollar-variable-pattern
: Specify a pattern for Sass-like variables.
percent-placeholder-pattern
: Specify a pattern for%
-placeholders.
media-feature-value-dollar-variable
: Require a media feature value be a$
-variable or disallow$
-variables in media feature values.
partial-no-import
: Disallow non-CSS@import
s in partial files.
selector-no-redundant-nesting-selector
: Disallow redundant nesting selectors (&
).
There work on the plugin's rules is still in progress, so if you feel like it, you're welcome to help out in any of these (the plugin follows stylelint guidelines so most part of this is based on its docs):
- Create, enhance, and debug rules (see stylelint's guide to "Working on rules").
- Improve documentation.
- Chime in on any open issue or pull request.
- Open new issues about your ideas on new rules, or for how to improve the existing ones, and pull requests to show us how your idea works.
- Add new tests to absolutely anything.
- Work on improving performance of rules.
- Contribute to stylelint
- Spread the word.
We communicate via issues and pull requests.
There is also stackoverflow, which would be the preferred QA forum.