| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Start working on the code that runs checks | Ian Cordasco | 2016-02-21 | 2 | -0/+126 | |
| | | ||||||
| * | Add parity with ``python -m flake8`` | Ian Cordasco | 2016-02-19 | 1 | -0/+4 | |
| | | ||||||
| * | Configure logging based on --verbose | Ian Cordasco | 2016-02-19 | 1 | -0/+2 | |
| | | ||||||
| * | Update the default log format | Ian Cordasco | 2016-02-19 | 1 | -2/+3 | |
| | | ||||||
| * | Fix Notifier.listeners_for | Ian Cordasco | 2016-02-19 | 1 | -1/+2 | |
| | | | | | | If no Trie.find returns None, then node.data will return an AttributeError. | |||||
| * | Remove arguments from StyleGuide | Ian Cordasco | 2016-02-19 | 2 | -3/+6 | |
| | | | | | | - StyleGuides do not need the arguments passed in - Add a test for is_inline_ignored obeying disable_noqa | |||||
| * | Fix tests while keeping pylint happy | Ian Cordasco | 2016-02-19 | 1 | -3/+4 | |
| | | ||||||
| * | Make pylint happier | Ian Cordasco | 2016-02-19 | 10 | -46/+63 | |
| | | ||||||
| * | Add specific tests for is_inline_ignored | Ian Cordasco | 2016-02-19 | 1 | -1/+1 | |
| | | | | | | Update the logic so someone can use a class in their ``# noqa`` ignore list | |||||
| * | Add checking for inline #noqa comments | Ian Cordasco | 2016-02-19 | 1 | -1/+49 | |
| | | | | | This also supports ignoring only specified codes | |||||
| * | Update StyleGuide tests and add new tests for handle_error | Ian Cordasco | 2016-02-15 | 1 | -2/+2 | |
| | | ||||||
| * | Simplify StyleGuide and add handle_error method | Ian Cordasco | 2016-02-10 | 1 | -5/+14 | |
| | | ||||||
| * | Sketch out how the StyleGuide would be used from main | Ian Cordasco | 2016-02-10 | 1 | -0/+3 | |
| | | ||||||
| * | Add internal documentation around default formatters | Ian Cordasco | 2016-02-10 | 1 | -18/+27 | |
| | | ||||||
| * | Add pylint formatter | Ian Cordasco | 2016-02-07 | 1 | -0/+14 | |
| | | ||||||
| * | Stop assigning output_fd in Default formatter | Ian Cordasco | 2016-02-07 | 2 | -1/+4 | |
| | | ||||||
| * | Allow dictionary-like get behaviour with plugins | Ian Cordasco | 2016-02-07 | 1 | -0/+16 | |
| | | ||||||
| * | Print the line not the output file object | Ian Cordasco | 2016-02-07 | 1 | -1/+1 | |
| | | ||||||
| * | Add default formatting class | Ian Cordasco | 2016-02-06 | 2 | -1/+33 | |
| | | ||||||
| * | Add more functionality to the BaseFormatter | Ian Cordasco | 2016-02-06 | 1 | -0/+105 | |
| | | | | | Ensure setuptools knows about flake8.formatting | |||||
| * | Start working on default formatters for Flake8 | Ian Cordasco | 2016-02-06 | 1 | -0/+1 | |
| | | ||||||
| * | Represent an error with a namedtuple | Ian Cordasco | 2016-02-06 | 1 | -0/+8 | |
| | | ||||||
| * | Add type annotations to flake8.utils for fun | Ian Cordasco | 2016-02-06 | 1 | -0/+4 | |
| | | ||||||
| * | Add caching stdin_get_value function | Ian Cordasco | 2016-02-03 | 1 | -0/+15 | |
| | | ||||||
| * | Add some logging to the style guide | Ian Cordasco | 2016-02-03 | 1 | -0/+9 | |
| | | ||||||
| * | Add option to disable # noqa | Ian Cordasco | 2016-02-03 | 1 | -0/+7 | |
| | | | | | | | Sometimes it is nice to be able to ignore what someone has used #noqa on and see what the results would be. This can also be specified in a config file to prevent people from using # noqa in a code base. | |||||
| * | Add handling and decision making for select and ignore | Ian Cordasco | 2016-02-02 | 1 | -1/+105 | |
| | | ||||||
| * | Move __contains__ and __getitem__ to proper class | Ian Cordasco | 2016-02-02 | 1 | -10/+10 | |
| | | ||||||
| * | Start work on our StyleGuide implementation | Ian Cordasco | 2016-02-01 | 1 | -0/+24 | |
| | | ||||||
| * | Start documenting our Trie implementation | Ian Cordasco | 2016-02-01 | 3 | -2/+2 | |
| | | ||||||
| * | Document our plugin handling | Ian Cordasco | 2016-01-31 | 1 | -1/+1 | |
| | | ||||||
| * | Add documentation about option aggregation | Ian Cordasco | 2016-01-27 | 1 | -1/+19 | |
| | | | | | Add logging around default ignore lists | |||||
| * | Log extended default values and add a test | Ian Cordasco | 2016-01-24 | 1 | -0/+1 | |
| | | ||||||
| * | Extend the default ignore list with plugins' defaults | Ian Cordasco | 2016-01-24 | 1 | -0/+6 | |
| | | ||||||
| * | Pass arglist to first parse_args call for testing | Ian Cordasco | 2016-01-24 | 1 | -1/+1 | |
| | | ||||||
| * | Add --config option flag | Ian Cordasco | 2016-01-24 | 1 | -5/+12 | |
| | | ||||||
| * | Add extend_default_ignore list to OptionManager | Ian Cordasco | 2016-01-24 | 1 | -0/+10 | |
| | | ||||||
| * | Refactor NotifierBuilder into its own mixin | Ian Cordasco | 2016-01-24 | 1 | -10/+14 | |
| | | | | | This allows for easier unit testing | |||||
| * | Build a Notifier instead of a Trie | Ian Cordasco | 2016-01-23 | 1 | -6/+13 | |
| | | ||||||
| * | Make Plugin.load_plugin raise a Flake8 exception | Ian Cordasco | 2016-01-22 | 2 | -12/+50 | |
| | | | | | | | Let's catch exceptions, log them, and re-raise as a FailedToLoad exception. This also refactors the actually loading of plugins into a private method on the Plugin class. | |||||
| * | Add method to build Tries from Notifiers | Ian Cordasco | 2016-01-21 | 1 | -0/+9 | |
| | | ||||||
| * | Add documentation to PluginManager.map | Ian Cordasco | 2016-01-21 | 1 | -1/+2 | |
| | | ||||||
| * | Stop calling split on a list | Ian Cordasco | 2016-01-19 | 1 | -1/+1 | |
| | | | | | --exclude-from-doctests is also parsed by flake8 for us | |||||
| * | Builtins will not be parsed by flake8 for us | Ian Cordasco | 2016-01-19 | 1 | -1/+1 | |
| | | ||||||
| * | Add missing docstrings to plugin submodule | Ian Cordasco | 2016-01-19 | 4 | -0/+24 | |
| | | ||||||
| * | Add tests around new OptionManager methods | Ian Cordasco | 2016-01-17 | 1 | -1/+1 | |
| | | ||||||
| * | Record registered plugins and format their versions | Ian Cordasco | 2016-01-16 | 2 | -0/+46 | |
| | | ||||||
| * | Add pyflakes shim from previous flake8 | Ian Cordasco | 2016-01-16 | 1 | -0/+130 | |
| | | | | | Modify the shim plugin to work with new flake8 | |||||
| * | Load plugins of each type idempotently | Ian Cordasco | 2016-01-16 | 1 | -7/+16 | |
| | | | | | | * Do not pass too many arguments to provide_options or register_options * Sub-class PluginTypeManager for both Listeners and Formatters | |||||
| * | Add main function entry-point to flake8 | Ian Cordasco | 2016-01-16 | 2 | -0/+41 | |
| | | | | | | | * Add --isolated option * Add --append-config * Add docstring to flake8.main | |||||
