Masafumi Koba

Results 705 comments of Masafumi Koba

@ArianeBouchardConformit I now understand your motivation. Right, Stylelint currently outputs lint results to stderr, not stdout. This behavior has changed since v16.0.0, see: https://github.com/stylelint/stylelint/blob/f60c0509fa7ec205de3c6783f22b7f6ad2294f8a/docs/migration-guide/to-16.md?plain=1#L325-L327 I also understand that it's probably...

In addition, if a `quietDeprecationWarnings` config property was added, sharable configs including the property might impact wider users unexpectedly.

To resolve the problem of lint reports and deprecation warnings being mixed in stderr, enhancing the `--output-file` flag for stdout might be a good idea. For example, if `--output-file=stdout` is...

We've changed the lint report target from stdout to stderr because there was a justification; see #7119 for details. There are various use cases, so we cannot consider only specific...

@HolgerJeromin Thanks for the report. I'm not sure how `-webkit-match-parent` is used, but we can work around this issue by specifying [`propertiesSyntax`](https://stylelint.io/user-guide/rules/declaration-property-value-no-unknown/#propertiessyntax) like this: ```json { "rules": { "declaration-property-value-no-unknown": [true,...

FYI, the ESLint team has published an official CSS plugin: https://github.com/eslint/css I'm curious about what the ESLint team will support for the Stylelint community. For example, add more rules, custom...

FYI, ESLint announced the CSS support a few days ago: https://eslint.org/blog/2025/02/eslint-css-support/

I'm unsure about the `@eslint/css` direction, but I find it worthwhile for many people writing CSS to unify these two tools. However, there seem to be some challenges to achieve...

Do you think it makes sense to adopt the [changesets](https://github.com/changesets/changesets) format? Like [this]( https://github.com/changesets/changesets/blob/a3acd12146e888abb104a6a41399be8bba0f6169/packages/cli/CHANGELOG.md).

Continuing to keep the *keepachangelog* format makes sense. We have already documented it here: https://github.com/stylelint/stylelint/blob/f5055feb3613eaf0f8a790d553112f28fa78fb3c/docs/maintainer-guide/issues.md?plain=1#L38 It doesn't seem that the *changesets* package supports the *keepachangelog* format, so we need some...