Reputation: 152807
Stylelint has this option "severity": "warning"
to changed errors to warnings. Is it possible to hide warnings from output temporarily? because I want to fix some errors and because of lots of warnings, it takes a long time to reach to error instances
Upvotes: 3
Views: 4561
Reputation: 10882
I believe you are looking for the quiet
option which suppress "warnings"
https://github.com/stylelint/stylelint/blob/master/lib/cli.js#L257-L260
--quiet, -q
Only register warnings for rules with an "error"-level severity (ignore
"warning"-level).
Upvotes: 9
Reputation: 3959
I believe you have a choice:
null
.Upvotes: 1