stylelint
stylelint copied to clipboard
A mighty CSS linter that helps you avoid errors and enforce conventions.
### What minimal example or steps are needed to reproduce the bug? https://github.com/stylelint/stylelint/blob/3751cfb4c6ba8c94dbd88db75ff6bd77a1aa70bc/types/stylelint/index.d.ts#L89-L116 ### What minimal configuration is needed to reproduce the bug? N/A ### How did you run Stylelint?...
### What minimal example or steps are needed to reproduce the bug? ``` css .test-grid { grid-template: "a a a" /* 3 whitspaces */ "b b b"; /* 2 whitespaces...
### What is the problem you're trying to solve? When comparing between the `compact` and `string` formatters, the `compact` one uses absolute paths whereas the `string` one uses [relative paths](https://github.com/stylelint/stylelint/blob/b2c99cef764643f3bd9539b34cdec58af882db88/lib/formatters/stringFormatter.mjs#L103)....
### What is the problem you're trying to solve? `declaration-block-no-duplicate-properties` is currently limited to detecting duplicate properties within the same rule, so this goes undetected: ```css .foo { color: red;...
### What minimal example or steps are needed to reproduce the bug? I'm writing a custom syntax to lint inline styles of angular components. The issue I run into one...