About rules
The built-in rules:
- apply to standard CSS syntax only
- are generally useful; not tied to idiosyncratic patterns
- have a clear and unambiguous finished state
- have a singular purpose
- are standalone, and don't rely on another rule
- do not contain functionality that overlaps with another rule
In contrast, a plugin is a community rule that doesn't adhere to all these criteria. It might support a particular methodology or toolset, or apply to non-standard constructs and features, or be for specific use cases.
Options
Each rule accepts a primary and an optional secondary option.
Primary
Every rule must have a primary option. For example, in:
"font-weight-notation": "numeric"
, the primary option is"numeric"
"selector-max-type": [2, { "ignoreTypes": ["custom"] }]
, the primary option is2
Secondary
Some rules require extra flexibility to address edge cases. These can use an optional secondary options object. For example, in:
"font-weight-notation": "numeric"
there is no secondary options object"selector-max-type": [2, { "ignore": ["descendant] }]
, the secondary options object is{ "ignore": ["descendant] }
The most typical secondary options are "ignore": []
and "except": []
.
Keyword "ignore"
and "except"
The "ignore"
and "except"
options accept an array of predefined keyword options, e.g. ["relative", "first-nested", "descendant"]
:
"ignore"
skips-over a particular pattern"except"
inverts the primary option for a particular pattern
User-defined "ignore*"
Some rules accept a user-defined list of things to ignore. This takes the form of "ignore<Things>": []
, e.g. "ignoreAtRules": []
.
The ignore*
options let users ignore non-standard syntax at the configuration level. For example, the:
:global
and:local
pseudo-classes introduced in CSS Modules@debug
and@extend
at-rules introduced in SCSS
Methodologies and language extensions come and go quickly, and this approach ensures our codebase does not become littered with code for obsolete things.
Names
Rule are consistently named, they are:
- made up of lowercase words separated by hyphens
- split into two parts
The first part describes what thing the rule applies to. The second part describes what the rule is checking.
For example:
"shorthand-property-no-redundant-values"
↑ ↑
the thing what the rule is checking
There is no first part when the rule applies to the whole stylesheet.
For example:
"no-duplicate-selectors"
"max-nesting-depth"
↑
what the rules are checking
Rules are named to encourage explicit, rather than implicit, options. For example, font-weight-notation: "numeric"|"named-where-possible"
rather than font-weight-numeric: "always"|"never"
. As font-weight-named: "never"
implies always numeric, whereas font-weight-notation: "numeric"
makes it explicit.
Notation rules
*-notation
rules set a preference for a notation.
For example, specifying whether alpha values should be percentages or numbers:
alpha-value-notation
:string
-"percentage"|"number"
a { color: rgb(0 0 0 / 10%) }
/** ↑
* The notation of this alpha value */
No rules
Most rules require or disallow something.
For example, whether colors must or must not be named:
color-named
:string
-"always-where-possible"|"never"
"always-where-possible"
- colors must always (where possible) be named"never"
- colors must never be named
a { color: red; }
/** ↑
* This named color */
However, some rules just disallow something. These rules include *-no-*
in their name.
For example, to disallow empty blocks:
block-no-empty
- blocks must not be empty
a { }
/** ↑
* Blocks like this */
Notice how it does not make sense to have an option to enforce the opposite, i.e. that every block must be empty.
Max and min rules
*-max-*
and *-min-*
rules set a limit to something.
For example, specifying the maximum number of digits after the "." in a number:
number-max-precision
:int
a { font-size: 1.333em; }
/** ↑
* The maximum number of digits after this "." */
Whitespace rules
These rules have been frozen in favour of using a pretty printer (like Prettier) alongside Stylelint.
Whitespace rules allow you to enforce an empty line, a single space, a newline or no space in some specific part of the stylesheet.
The whitespace rules combine two sets of keywords:
before
,after
andinside
to specify where the whitespace (if any) is expectedempty-line
,space
andnewline
to specify whether a single empty line, a single space, a single newline or no space is expected there
For example, specifying if a single empty line or no space must come before all the comments in a stylesheet:
comment-empty-line-before
:string
-"always"|"never"
a {}
←
/* comment */ ↑
↑
/** ↑
* This empty line */
Additionally, some whitespace rules use an additional set of keywords:
comma
,colon
,semicolon
,opening-brace
,closing-brace
,opening-parenthesis
,closing-parenthesis
,operator
orrange-operator
are used if a specific piece of punctuation in the thing is being targeted
For example, specifying if a single space or no space must follow a comma in a function:
function-comma-space-after
:string
-"always"|"never"
a { transform: translate(1, 1) }
/** ↑
* The space after this commas */
The plural of the punctuation is used for inside
rules. For example, specifying if a single space or no space must be inside the parentheses of a function:
function-parentheses-space-inside
:string
-"always"|"never"
a { transform: translate( 1, 1 ); }
/** ↑ ↑
* The space inside these two parentheses */
READMEs
Each rule is accompanied by a README in the following format:
- Rule name.
- Single-line description.
- Prototypical code example.
- Expanded description (if necessary).
- Options.
- Example patterns that are considered problems (for each option value).
- Example patterns that are not considered problems (for each option value).
- Optional options (if applicable).
The single-line description is in the form of:
- "Disallow ..." for
no
rules - "Limit ..." for
max
rules - "Require ..." for rules that accept
"always"
and"never"
options - "Specify ..." for everything else
Problem messages
Each rule produces problem messages in these forms:
- "Expected [something] [in some context]"
- "Unexpected [something] [in some context]"