| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove exc_info for logging.exception | Ian Cordasco | 2016-06-29 | 1 | -1/+1 |
| | | | | | It's redundant and the docs say explicitly that it's ignored. | ||||
| * | Iterate over the checkers fewer times | Ian Cordasco | 2016-06-28 | 1 | -4/+17 |
| | | |||||
| * | Handle optional parameters that were never supported | Ian Cordasco | 2016-06-28 | 1 | -1/+9 |
| | | | | | | | | | | | | | | | | | | Previously, pycodestyle never introspected the argument names for classes except to require that ``tree`` be an argument it could pass. For Flake8 3.0, we lifted that restriction, but old plugins seem to have cargo-culted their __init__ signature to be def __init__(self, tree, builtins=None): For some yet unknown reason. This was causing an AttributeError. By updating flake8.utils.parameters_for to return a dictionary that indicates whether the parameter is required or not, we can side-step this by simply ignoring the parameter if it has a default value and we cannot provide it. Closes #151 | ||||
| * | Enable plugins automatically during registration | Ian Cordasco | 2016-06-28 | 1 | -0/+11 |
| | | | | | | | | | Previously the --select was only ever populated to E,F,W,C and so plugins would not be reported when not off-by-default. This adds a tiny shim so that we enable plugins that are not off-by-default and :x :x | ||||
| * | Merge branch 'origin/proposed/3.0' into master3.0.0b1 | Ian Cordasco | 2016-06-25 | 1 | -0/+1 |
| | | |||||
| * | Move flake8 into src | Ian Cordasco | 2016-06-25 | 5 | -0/+742 |
| This is an emerging best practice and there is little reason to not follow it | |||||
