Masafumi Koba
Masafumi Koba
@amarg26 Thanks for using the template. The [`declaration-block-no-duplicate-properties`](https://stylelint.io/user-guide/rules/list/declaration-block-no-duplicate-properties/) rule doesn't provide the *autofix* feature, but do you want autofix?
We can fix the following case easily, and it seems useful to me: ```css a { color: pink; color: pink; /* should be removed */ } ``` But, can we...
Thanks for the explanation. That makes sense. 👍🏼
@amarg26 No one has touched this issue yet. PR welcome. 😃 If you could implement the auto-fix and it would be merged, the next minor version would include it.
@carlosjeurissen Thank you. That's a good point. 👍🏼 Indeed, can we easily distinguish if fallback or not...? 🤔
@carlosjeurissen Thanks for providing the related issue links. 👍🏼 When considering fallbacks, it seems safer to use the `ignore: ["consecutive-duplicates-with-different-values"]` option together (see also ) or to specify `/* stylelint-disable...
I believe we've rewritten all the examples. If there is what we missed, please let us know or open a pull request.
@XhmikosR Thank you for creating this issue. This limitation has been introduced by the `log-symbols` package refactoring (PR #5562). A solution is adding the fallback symbols like `log-symbols` does: https://github.com/sindresorhus/log-symbols/blob/6aea9853e1fb85a437f868d0ef400ce122c08c1d/index.js#L11-L16...
I'm not sure about Windows, but how many people use Stylint on the native cmd (not supporting Unicode)? Is it worth adding dependencies or logic? Also, it seems good to...
@ai Thanks for the suggestion and for using the template. Sounds good to me. 👍🏼 I cannot find a spec for `oklch()` and `oklab()`, so could you please provide where...