Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make numpydoc lint --ignore ... parsing more robust #560

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on May 24, 2024

  1. Make numpydoc lint --ignore ... parsing more robust

    Before, the only way to specify ignores is as:
    
      numpydoc lint filename --ignore EX01 SA01
    
    and multiple invocations of the ignore flag overwrote one another.
    
    Instead, ignored checks are now specified as:
    
      numpydoc lint --ignore=EX01,SA01 filename
    
    The comma can also be whitespace:
    
      numpydoc lint --ignore="EX01 SA01" filename
    
    Multiple ignore flags work correctly:
    
      numpydoc lint --ignore EX01 --ignore SA01 filename
    stefanv committed May 24, 2024
    Configuration menu
    Copy the full SHA
    29abec9 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Update numpydoc/tests/test_main.py

    Co-authored-by: Stefanie Molin <[email protected]>
    rossbar and stefmolin committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    30de526 View commit details
    Browse the repository at this point in the history