summaryrefslogtreecommitdiff
path: root/flake8
Commit message (Collapse)AuthorAgeFilesLines
...
* Start working on the code that runs checksIan Cordasco2016-02-212-0/+126
|
* Add parity with ``python -m flake8``Ian Cordasco2016-02-191-0/+4
|
* Configure logging based on --verboseIan Cordasco2016-02-191-0/+2
|
* Update the default log formatIan Cordasco2016-02-191-2/+3
|
* Fix Notifier.listeners_forIan Cordasco2016-02-191-1/+2
| | | | | If no Trie.find returns None, then node.data will return an AttributeError.
* Remove arguments from StyleGuideIan Cordasco2016-02-192-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 happyIan Cordasco2016-02-191-3/+4
|
* Make pylint happierIan Cordasco2016-02-1910-46/+63
|
* Add specific tests for is_inline_ignoredIan Cordasco2016-02-191-1/+1
| | | | | Update the logic so someone can use a class in their ``# noqa`` ignore list
* Add checking for inline #noqa commentsIan Cordasco2016-02-191-1/+49
| | | | This also supports ignoring only specified codes
* Update StyleGuide tests and add new tests for handle_errorIan Cordasco2016-02-151-2/+2
|
* Simplify StyleGuide and add handle_error methodIan Cordasco2016-02-101-5/+14
|
* Sketch out how the StyleGuide would be used from mainIan Cordasco2016-02-101-0/+3
|
* Add internal documentation around default formattersIan Cordasco2016-02-101-18/+27
|
* Add pylint formatterIan Cordasco2016-02-071-0/+14
|
* Stop assigning output_fd in Default formatterIan Cordasco2016-02-072-1/+4
|
* Allow dictionary-like get behaviour with pluginsIan Cordasco2016-02-071-0/+16
|
* Print the line not the output file objectIan Cordasco2016-02-071-1/+1
|
* Add default formatting classIan Cordasco2016-02-062-1/+33
|
* Add more functionality to the BaseFormatterIan Cordasco2016-02-061-0/+105
| | | | Ensure setuptools knows about flake8.formatting
* Start working on default formatters for Flake8Ian Cordasco2016-02-061-0/+1
|
* Represent an error with a namedtupleIan Cordasco2016-02-061-0/+8
|
* Add type annotations to flake8.utils for funIan Cordasco2016-02-061-0/+4
|
* Add caching stdin_get_value functionIan Cordasco2016-02-031-0/+15
|
* Add some logging to the style guideIan Cordasco2016-02-031-0/+9
|
* Add option to disable # noqaIan Cordasco2016-02-031-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 ignoreIan Cordasco2016-02-021-1/+105
|
* Move __contains__ and __getitem__ to proper classIan Cordasco2016-02-021-10/+10
|
* Start work on our StyleGuide implementationIan Cordasco2016-02-011-0/+24
|
* Start documenting our Trie implementationIan Cordasco2016-02-013-2/+2
|
* Document our plugin handlingIan Cordasco2016-01-311-1/+1
|
* Add documentation about option aggregationIan Cordasco2016-01-271-1/+19
| | | | Add logging around default ignore lists
* Log extended default values and add a testIan Cordasco2016-01-241-0/+1
|
* Extend the default ignore list with plugins' defaultsIan Cordasco2016-01-241-0/+6
|
* Pass arglist to first parse_args call for testingIan Cordasco2016-01-241-1/+1
|
* Add --config option flagIan Cordasco2016-01-241-5/+12
|
* Add extend_default_ignore list to OptionManagerIan Cordasco2016-01-241-0/+10
|
* Refactor NotifierBuilder into its own mixinIan Cordasco2016-01-241-10/+14
| | | | This allows for easier unit testing
* Build a Notifier instead of a TrieIan Cordasco2016-01-231-6/+13
|
* Make Plugin.load_plugin raise a Flake8 exceptionIan Cordasco2016-01-222-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 NotifiersIan Cordasco2016-01-211-0/+9
|
* Add documentation to PluginManager.mapIan Cordasco2016-01-211-1/+2
|
* Stop calling split on a listIan Cordasco2016-01-191-1/+1
| | | | --exclude-from-doctests is also parsed by flake8 for us
* Builtins will not be parsed by flake8 for usIan Cordasco2016-01-191-1/+1
|
* Add missing docstrings to plugin submoduleIan Cordasco2016-01-194-0/+24
|
* Add tests around new OptionManager methodsIan Cordasco2016-01-171-1/+1
|
* Record registered plugins and format their versionsIan Cordasco2016-01-162-0/+46
|
* Add pyflakes shim from previous flake8Ian Cordasco2016-01-161-0/+130
| | | | Modify the shim plugin to work with new flake8
* Load plugins of each type idempotentlyIan Cordasco2016-01-161-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 flake8Ian Cordasco2016-01-162-0/+41
| | | | | | * Add --isolated option * Add --append-config * Add docstring to flake8.main