Problem
Currently the only way to suppress diagnostics is through config-level ignore.rules and ignore.files, which operate globally. This means if you have one legitimate use of a pattern, you must silence the rule everywhere.
Proposal
Support inline suppression comments that disable specific rules on the next line only:
// react-doctor-disable-next-line react-doctor/no-array-index-as-key
{message.parts.map((part, index) => {
Thanks for the great tool
Problem
Currently the only way to suppress diagnostics is through config-level ignore.rules and ignore.files, which operate globally. This means if you have one legitimate use of a pattern, you must silence the rule everywhere.
Proposal
Support inline suppression comments that disable specific rules on the next line only:
Thanks for the great tool