-
Would it be possible to have a feature like phpstan has - that lines with ignored errors that do not silence anything are reported? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
@temp It's something I'd been thinking about for quite a while (long before even PHPStan had the feature), but as you already figured out, it's not something which is easy to implement in PHP_CodeSniffer as things are. And changing the internals of PHPCS to accommodate this would be a huge breaking change, so is not really an option. The only thing I can currently come up with to get this working, would be a specialized Report, but that report could only work in combination with the Not a great solution, but could still be useful I suppose. I'm open to other ideas - providing they don't cause breaking changes. |
Beta Was this translation helpful? Give feedback.
Done! #831