UNPKG

833 BMarkdownView Raw
1# Errors & warnings
2
3In addition to rule violations, stylelint surfaces the following errors and warnings:
4
5## CSS syntax error
6
7The chosen [PostCSS syntax](../about/syntaxes.md) was unable to parse the source.
8
9## Parse error
10
11The chosen [PostCSS syntax](../about/syntaxes.md) successfully parsed, but one of the construct-specific parsers failed to parse either a media query, selector or value within that source.
12
13The construct-specific parsers are:
14
15- `postcss-media-query-parser`
16- `postcss-selector-parser`
17- `postcss-value-parser`
18
19## Unknown rule error
20
21There is an unknown rule in the [configuration object](configure.md).
22
23## Deprecation warning
24
25There is a deprecated rule in the [configuration object](configure.md).
26
27## Invalid option warning
28
29There is a misconfigured rule in the [configuration object](configure.md).