In addition to rule problems, Stylelint surfaces the following errors and warnings:
The CSS parser built into Stylelint, or the chosen custom syntax, could not parse your code.
You should balance your curly braces, typically of declaration blocks.
For example:
- a { color: red;
+ a { color: red; }
You should balance your square brackets, typically of attribute selectors and grid names.
For example:
- a[foo { grid: [bar; }
+ a[foo] { grid: [bar]; }
You should balance your quotation marks.
For example:
- a { content: " }
+ a { content: "" }
You should:
- hyphenate properties
- separate property and value pairs with colons
- separate declarations with semicolons
- pair selectors with declaration blocks in rules
For example:
a {
- margin top: 1px
- color red
+ margin-top: 1px;
+ color: red
}
The CSS parser built into Stylelint (or the chosen custom syntax) successfully parsed your code, but one of the construct-specific parsers failed to parse either a media query, selector or value within that source.
The construct-specific parsers are:
postcss-media-query-parser
postcss-selector-parser
postcss-value-parser
You should check that your constructs are wellformed, e.g. parentheses are balanced.
There is an unknown rule in the configuration object.
You should:
- install the latest version of Stylelint (
npm i --save-dev stylelint
), as we may have recently added the rule - check that the rule exists and is correctly named by searching the list of rules
There is a deprecated rule in the configuration object.
You should:
- identify in the CHANGELOG which release deprecated the rule
- take the action suggested there
There is a misconfigured rule in the configuration object.
You should:
- install the latest version of Stylelint (
npm i --save-dev stylelint
), as we may have recently added the option - check that the option exists and is correctly named by reading the rule's README
- correctly configure the
rules
property in the configuration object