You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all. Is it possible to skip specific rules for specific functions?
I know that it's possible to use exclude to skip all numpydoc validation for matching functions, and that it's possible to use inline comments skip checking of specific rules for specific functions on a case-by-case basis. Is there any intermediate configuration possible? I would like to skip checking EX01 on all private functions (those starting with _), but validate all other rules on those functions (and EX01 on all functions that don't start with _).
(I could manually add inline comments for each private function, but it feels like there must be a better way.)