| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | extend black formatting to tests as well | Anthony Sottile | 2021-04-18 | 1 | -167/+236 |
| | | |||||
| * | automatic: pyupgrade --py36-plus | Anthony Sottile | 2021-03-30 | 1 | -5/+5 |
| | | |||||
| * | introduce pyupgrade, run it in python2-compatible mode | Anthony Sottile | 2021-03-29 | 1 | -1/+1 |
| | | |||||
| * | fix a few small spelling issues | Anthony Sottile | 2020-09-20 | 1 | -1/+1 |
| | | | | | found via `pre-commit try-repo https://github.com/codespell-project/codespell --all-files` | ||||
| * | instrument coverage on tests and require 100% coverage there | Anthony Sottile | 2020-03-23 | 1 | -2/+1 |
| | | |||||
| * | Allow noqa to apply to lines due to continuationnoqa_continuation | Anthony Sottile | 2020-03-17 | 1 | -5/+45 |
| | | |||||
| * | split lines the same when read from stdin | Anthony Sottile | 2020-01-16 | 1 | -13/+4 |
| | | |||||
| * | Remove redundant sample data | Isac Yoo | 2019-11-13 | 1 | -9/+2 |
| | | |||||
| * | Fix codes | Byeonghoon Yoo | 2019-11-06 | 1 | -20/+30 |
| | | |||||
| * | Add unit test for dd411e95 | Byeonghoon Yoo | 2019-11-05 | 1 | -13/+20 |
| | | |||||
| * | Don't reset indent_char when we encounter E101 | Anthony Sottile | 2019-09-24 | 1 | -18/+0 |
| | | |||||
| * | Add type annotations for flake8.processor | Anthony Sottile | 2019-09-07 | 1 | -2/+3 |
| | | |||||
| * | whitelist a bandit false positive and improve type annotation | Anthony Sottile | 2019-05-19 | 1 | -3/+3 |
| | | |||||
| * | Fix linters | Anthony Sottile | 2019-01-30 | 1 | -4/+9 |
| | | |||||
| * | Refactor file processor tests to use fixture | Tomer Keren | 2019-01-30 | 1 | -59/+50 |
| | | |||||
| * | Latest pycodestyle | Anthony Sottile | 2019-01-29 | 1 | -0/+1 |
| | | |||||
| * | Fix linters | Anthony Sottile | 2019-01-27 | 1 | -1/+1 |
| | | |||||
| * | Add tests for noqa without a space | Tomer Keren | 2018-12-27 | 1 | -0/+4 |
| | | |||||
| * | Fixups after 3.6.0 release | Anthony Sottile | 2018-10-23 | 1 | -12/+11 |
| | | |||||
| * | Be explicit about the bytes put into test files | Anthony Sottile | 2018-10-23 | 1 | -5/+6 |
| | | |||||
| * | Revert "Merge branch 'revert-63b91c95' into 'master'" | Anthony Sottile | 2018-10-23 | 1 | -0/+26 |
| | | | | | | This reverts commit ba2fb9c53a8316642249598f599bbf7608d54260, reversing changes made to 63b91c95ea7795e3c3c90f2d643f685bfff312e9. | ||||
| * | Revert "Merge branch 'match_newlines_py3' into 'master'" | Anthony Sottile | 2018-10-23 | 1 | -26/+0 |
| | | | | This reverts merge request !253 | ||||
| * | Fix inconsistent newlines read from a file in python3 | Anthony Sottile | 2018-10-22 | 1 | -0/+26 |
| | | |||||
| * | Only skip a file if `# flake8: noqa` is on a line by itself | Anthony Sottile | 2018-07-01 | 1 | -0/+1 |
| | | |||||
| * | Report error when non-exiting path is passed to flake8 | Avraham Shukron | 2018-02-21 | 1 | -0/+5 |
| | | |||||
| * | Simplify and speed up multiprocessing | Anthony Sottile | 2016-11-29 | 1 | -1/+1 |
| | | |||||
| * | Handle empty stdin-display-name values | Ian Cordasco | 2016-10-28 | 1 | -0/+12 |
| | | | | | | | | Apparently, some folks pass an empty string to --stdin-display-name. To avoid the errors this causes, we need to handle it appropriately. Closes #235 | ||||
| * | Fix read_lines_splits_lines test for CRLF endings | FichteFoll | 2016-07-27 | 1 | -1/+2 |
| | | |||||
| * | Fix up merge request 78 | Ian Cordasco | 2016-07-20 | 1 | -3/+11 |
| | | | | | | | | | This simplifies the changes, reduces the scope of refactors apparently for refactoring's sake and ensures that the internals are reasonable. It also airs on the side of preserving information rather than discarding or overwriting it. | ||||
| * | Propagate the stdin_display_name to checker and processor | Leonardo Rochael Almeida | 2016-07-20 | 1 | -1/+6 |
| | | | | | This way plugins like flake8-putty can have access to the correct filename. | ||||
| * | Handle optional parameters that were never supported | Ian Cordasco | 2016-06-28 | 1 | -5/+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 | ||||
| * | Add more processor tests | Ian Cordasco | 2016-04-02 | 1 | -0/+42 |
| | | |||||
| * | Add more tests around the processor module | Ian Cordasco | 2016-03-29 | 1 | -0/+40 |
| | | |||||
| * | Add a few more unit tests around FileProcessor | Ian Cordasco | 2016-03-28 | 1 | -0/+42 |
| | | |||||
| * | Add unit test for build_ast | Ian Cordasco | 2016-03-28 | 1 | -0/+11 |
| | | |||||
| * | Add test for FileProcessor#split_line | Ian Cordasco | 2016-03-27 | 1 | -0/+18 |
| | | |||||
| * | Add more FileProcessor tests | Ian Cordasco | 2016-03-26 | 1 | -0/+80 |
| | | |||||
| * | Add test for reading from stdin with the file processor | Ian Cordasco | 2016-03-21 | 1 | -0/+12 |
| | | |||||
| * | Add a test for FileProcessor.should_ignore_file | Ian Cordasco | 2016-03-17 | 1 | -0/+14 |
| | | |||||
| * | Add docstring for our test helper | Ian Cordasco | 2016-03-17 | 1 | -0/+1 |
| | | |||||
| * | Remove unnecessary and outdated test runner | Ian Cordasco | 2016-03-17 | 1 | -11/+18 |
| | | |||||
| * | Rename test file to mirror actual class it is testing | Ian Cordasco | 2016-03-17 | 1 | -0/+26 |
