Every rule is standalone and turned off by default. None of the rules have default values for their options.
Here are all the rules within stylelint, grouped by the thing they apply to.
color-hex-case
: Specify lowercase or uppercase for hex colors.color-hex-length
: Specify short or long notation for hex colors.color-no-hex
: Disallow hex colors.color-no-invalid-hex
: Disallow invalid hex colors.color-no-named
: Disallow named colors.
font-family-name-quotes
: Specify whether or not quotation marks should be used around font family names, and whether single or double.
font-weight-notation
: Require consistent numeric or namedfont-weight
values.
function-blacklist
: Specify a blacklist of disallowed functions.function-calc-no-unspaced-operator
: Disallow an unspaced operator withincalc
functions.function-comma-newline-after
: Require a newline or disallow whitespace after the commas of functions.function-comma-newline-before
: Require a newline or disallow whitespace before the commas of functions.function-comma-space-after
: Require a single space or disallow whitespace after the commas of functions.function-comma-space-before
: Require a single space or disallow whitespace before the commas of functions.function-linear-gradient-no-nonstandard-direction
: Disallow direction values inlinear-gradient()
calls that are not valid according to the standard syntax.function-parentheses-newline-inside
: Require a newline or disallow whitespace on the inside of the parentheses of functions.function-parentheses-space-inside
: Require a single space or disallow whitespace on the inside of the parentheses of functions.function-url-quotes
: Specify single, double or no quotes for urls.function-whitelist
: Specify a whitelist of only allowed functions.function-whitespace-after
: Require a single space or disallow whitespace after functions.
number-leading-zero
: Require or disallow a leading zero for fractional numbers less than 1.number-max-precision
: Limit the number of decimal places allowed in numbers.number-no-trailing-zeros
: Disallow trailing zeros within numbers.number-zero-length-no-unit
: Disallow units for zero lengths.
string-quotes
: Specify single or double quotes around strings.
time-no-imperceptible
: Disallowanimation
andtransition
times under 100ms.
unit-blacklist
: Specify a blacklist of disallowed units.unit-whitelist
: Specify a whitelist of allowed units.
value-no-vendor-prefix
: Disallow vendor prefixes for values.
value-list-comma-newline-after
: Require a newline or disallow whitespace after the commas of value lists.value-list-comma-newline-before
: Require a newline or disallow whitespace before the commas of value lists.value-list-comma-space-after
: Require a single space or disallow whitespace after the commas of value lists.value-list-comma-space-before
: Require a single space or disallow whitespace before the commas of value lists.
custom-property-no-outside-root
: Disallow custom properties outside of:root
selectors.custom-property-pattern
: Specify pattern of custom properties.
property-blacklist
: Specify a blacklist of disallowed properties.property-no-vendor-prefix
: Disallow vendor prefixes for properties.property-unit-blacklist
: Specify a blacklist of disallowed units for specific properties.property-unit-whitelist
: Specify a whitelist of disallowed units for specific properties.property-value-blacklist
: Specify a blacklist of disallowed property-value pairs.property-value-whitelist
: Specify a whitelist of allowed property-value pairs.property-whitelist
: Specify a whitelist of allowed properties.
declaration-bang-space-after
: Require a single space or disallow whitespace after the bang of declarations.declaration-bang-space-before
: Require a single space or disallow whitespace before the bang of declarations.declaration-colon-newline-after
: Require a newline or disallow whitespace after the colon of declarations.declaration-colon-space-after
: Require a single space or disallow whitespace after the colon of declarations.declaration-colon-space-before
: Require a single space or disallow whitespace before the colon of declarations.declaration-no-important
: Disallow!important
within declarations.
declaration-block-no-single-line
: Disallow single-line declaration blocks.declaration-block-semicolon-newline-after
: Require a newline or disallow whitespace after the semicolons of declaration blocks.declaration-block-semicolon-newline-before
: Require a newline or disallow whitespace before the semicolons of declaration blocks.declaration-block-semicolon-space-after
: Require a single space or disallow whitespace after the semicolons of declaration blocks.declaration-block-semicolon-space-before
: Require a single space or disallow whitespace before the semicolons of declaration blocks.declaration-block-single-line-max-declarations
: Limit the number of declaration within single line declaration blocks.
block-closing-brace-newline-after
: Require a newline or disallow whitespace after the closing brace of blocks.block-closing-brace-newline-before
: Require a newline or disallow whitespace before the closing brace of blocks.block-closing-brace-space-after
: Require a single space or disallow whitespace after the closing brace of blocks.block-closing-brace-space-before
: Require a single space or disallow whitespace before the closing brace of blocks.block-no-empty
: Disallow empty blocks.block-opening-brace-newline-after
: Require a newline after the opening brace of blocks.block-opening-brace-newline-before
: Require a newline or disallow whitespace before the opening brace of blocks.block-opening-brace-space-after
: Require a single space or disallow whitespace after the opening brace of blocks.block-opening-brace-space-before
: Require a single space or disallow whitespace before the opening brace of blocks.
root-no-standard-properties
: Disallow standard properties inside:root
selectors.
selector-class-pattern
: Specify a pattern for class selectors.selector-combinator-space-after
: Require a single space or disallow whitespace after the combinators of selectors.selector-combinator-space-before
: Require a single space or disallow whitespace before the combinators of selectors.selector-id-pattern
: Specify a pattern for id selectors.selector-no-attribute
: Disallow attribute selectors.selector-no-combinator
: Disallow combinators in selectors.selector-no-id
: Disallow id selectors.selector-no-type
: Disallow type selectors.selector-no-universal
: Disallow universal selectors.selector-no-vendor-prefix
: Disallow vendor prefixes for selectors.selector-pseudo-element-colon-notation
: Specify single or double colon notation for applicable pseudo-elements.selector-root-no-composition
: Disallow the composition of:root
selectors.
selector-list-comma-newline-after
: Require a newline or disallow whitespace after the commas of selector lists.selector-list-comma-newline-before
: Require a newline or disallow whitespace before the commas of selector lists.selector-list-comma-space-after
: Require a single space or disallow whitespace after the commas of selector lists.selector-list-comma-space-before
: Require a single space or disallow whitespace before the commas of selector lists.
rule-nested-empty-line-before
: Require or disallow an empty line before nested rules.rule-no-duplicate-properties
: Disallow duplicate properties within rules.rule-no-shorthand-property-overrides
: Disallow shorthand properties that override related longhand properties.rule-non-nested-empty-line-before
: Require or disallow an empty line before non-nested rules.rule-properties-order
: Specify the order of properties within rules.rule-trailing-semicolon
: Require or disallow a trailing semicolon within rules.
media-feature-colon-space-after
: Require a single space or disallow whitespace after the colon in media features.media-feature-colon-space-before
: Require a single space or disallow whitespace before the colon in media features.media-feature-name-no-vendor-prefix
: Disallow vendor prefixes for media feature names.media-feature-no-missing-punctuation
: Ensure that non-boolean media features have the punctuation they need: either a colon or a range-operator.media-feature-range-operator-space-after
: Require a single space or disallow whitespace after the range operator in media features.media-feature-range-operator-space-before
: Require a single space or disallow whitespace before the range operator in media features.
custom-media-pattern
: Specify pattern of custom media query names.
media-query-parentheses-space-inside
: Require a single space or disallow whitespace on the inside of the parentheses within media queries.
media-query-list-comma-newline-after
: Require a newline or disallow whitespace after the commas of media query lists.media-query-list-comma-newline-before
: Require a newline or disallow whitespace before the commas of media query lists.media-query-list-comma-space-after
: Require a single space or disallow whitespace after the commas of media query lists.media-query-list-comma-space-before
: Require a single space or disallow whitespace before the commas of media query lists.
at-rule-empty-line-before
: Require or disallow an empty line before @rules.at-rule-no-vendor-prefix
: Disallow vendor prefixes for @rules.
comment-empty-line-before
: Require or disallow an empty line before comments.comment-whitespace-inside
: Require a single space or disallow whitespace on the inside of comment markers.
indentation
: Specify indentation.max-empty-lines
: Limit the number of adjacent empty lines.max-line-length
: Limit the length of a line.no-duplicate-selectors
: Disallow duplicate selectors.no-eol-whitespace
: Disallow end-of-line whitespace.no-invalid-double-slash-comments
: Disallow double-slash comments (//...
) which are not supported by CSS.no-missing-eof-newline
: Disallow missing end-of-file newline.no-unknown-animations
: Disallow animation names that do not correspond to a@keyframes
declaration.
-
Made of lowercase words separated by hyphens.
-
Split into two parts:
- The first describes what thing the rule applies to.
- The second describes what the rule is checking.
"number-leading-zero"
↑ ↑
the thing what the rule is checking
- Except when the rule applies to the whole stylesheet:
"no-eol-whitespace"
"indentation"
↑
what the rules are checking
Most rules allow you to choose whether you want to require *or- disallow something.
For example, whether numbers must or must not have a leading zero:
-
number-leading-zero
:string - "always"|"never"
"always"
- there must always be a leading zero."never"
- there must never be a leading zero.
a { line-height: 0.5; }
/** ↑
* This leading zero */
However, some rules just disallow something. *-no-*
is used to identify these rules.
For example, whether empty blocks should be disallowed:
block-no-empty
- blocks must not be empty.
a { }
/** ↑
* Blocks like this */
Notice how, for a rule like this, it does not make sense to have an option to enforce the opposite i.e. that every block must be empty.
*-max-*
is used when a rule is setting 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 allow you to specify whether an empty line, a single space, a newline or no space must be used in some specific part of the stylesheet.
The whitespace rules combine two sets of keywords:
before
,after
andinside
are used to specify where the whitespace (if any) is expected.empty-line
,space
andnewline
are used 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 rule make use of another 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 targetted.
For example, specifying if a single space or no space must come after 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 */