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
Allow limiting warnings to those affecting changed code
This allows gradual introduction of linting, hiding warnings for untouched
lines since a given point.
Ignore mkdir && rsync problem on last line of script
There, it is not a problem, since a failing mkdir would still set the overall
exit code to nonzero.
Fix handling of stdin
Stdin is always a text stream, as it doesn't get passed through
`argparse.FileType('rb')`. Handle it specially.
For stdin, we also don't know the original file name, so skip the
check that the file name matches the package name.