summaryrefslogtreecommitdiff
path: root/docs/source/plugin-development/plugin-parameters.rst
Commit message (Collapse)AuthorAgeFilesLines
* move from optparse to argparseAnthony Sottile2019-08-171-11/+11
|
* Latest pycodestyleAnthony Sottile2019-01-291-0/+1
|
* Recommend registering plugin options using `add_options` and `parse_options` ↵Alexander Schlarb2018-12-161-7/+7
| | | | rather then `register_options` and `provide_options` since these are actually called.
* Add previous_unindented_logical_line attributeYen Chi Hsuan2016-11-081-0/+1
| | | | | | | | This attribute is introduced in pycodestyle 2.1.0 Closes #246 See: https://github.com/PyCQA/pycodestyle/issues/400
* Trim trailing spaces from documentationIan Cordasco2016-10-251-5/+5
|
* Merge branch 'file-tokens' of xzise/flake8Ian Cordasco2016-10-251-11/+11
|\
| * Add support for tokens of a complete fileFabian Neundorf2016-07-221-4/+13
| | | | | | | | | | | | | | | | | | | | | | The `tokens` property of the `FileProcessor` class only contains tokens of the current line but not all tokens. So if a plugin which is only executed once per file, that property is useless. To make the tokens also available to plugins it is now be able to supply all the tokens of a file. It also updates the documentation to separate which parameters are static and which are changed on each line. Using the latter parameters on plugins which are only run once per file isn't very sensible.
* | Document how it determines when the plugin is runFabian Neundorf2016-08-011-0/+6
| | | | | | | | | | | | | | | | If a plugin's target (constructor or function) doesn't satisfy specific parameters, it'll never be called. This documents what the parameters must contain to be run at all. Related to: #159
* | Update documentation to separate parameter typesFabian Neundorf2016-07-251-4/+11
|/ | | | | | It updates the documentation to separate which parameters are static and which are changed on each line. Using the latter parameters on plugins which are only run once per file isn't very sensible.
* Fix typo in documentation using `indect`Fabian Neundorf2016-07-211-1/+1
| | | | | | The documentation for the `FileProcessor` class used `indect_char` while the class itself uses the more sensible name `indent_char`. This updates both the docstring as well as the documentation.
* Rename dev subdirectory to plugin-developmentIan Cordasco2016-06-251-0/+163
This should make the contents clearer