Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-03Ignore flake8-bugbear B023Jon Turney
I seem to like writing code which I think legitimately use the construct this warns about. Drop ignoring B020, since false positives are fixed.
2022-06-07Extend fix-missing-src-hint-info for license:Jon Turney
2022-05-08Ignore flake8-bugbear B020Jon Turney
Ignore flake8-bugbear B020, since it false-positives on any for loop on an itererable using a lambda.
2021-01-10Ignore B902 flakeJon Turney
Ignore 'B902 blind except Exception: statement' flake. This isn't ideal. Three of these places are where we would otherwise have to enumerate all possible exceptions which could be raised during reading a compressed archive. The final place is were we are catching any possible exception to log before terminating, so really needs to be blind.
2020-06-11Also use flake8-builtins in CIJon Turney
2020-02-18Move flake8 settings to .flake8Jon Turney