summaryrefslogtreecommitdiff
path: root/flake8/processor.py
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-05-14 19:35:58 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-05-14 19:35:58 -0500
commit89762b9dd17b15e60595b843d0f90dfc0d68f75b (patch)
treec6d380275c210c2571436964e1b08aa26d3a43ce /flake8/processor.py
parentd929dd57cb80a31f151535d32f7593d95c4e80ee (diff)
downloadflake8-89762b9dd17b15e60595b843d0f90dfc0d68f75b.tar.gz
Document flake8.checker and flake8.processor
Diffstat (limited to 'flake8/processor.py')
-rw-r--r--flake8/processor.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/flake8/processor.py b/flake8/processor.py
index e71784c..ab99089 100644
--- a/flake8/processor.py
+++ b/flake8/processor.py
@@ -30,20 +30,20 @@ class FileProcessor(object):
to checks expecting that state. Any public attribute on this object can
be requested by a plugin. The known public attributes are:
- - blank_before
- - blank_lines
- - indect_char
- - indent_level
- - line_number
- - logical_line
- - max_line_length
- - multiline
- - noqa
- - previous_indent_level
- - previous_logical
- - tokens
- - total_lines
- - verbose
+ - :attr:`blank_before`
+ - :attr:`blank_lines`
+ - :attr:`indect_char`
+ - :attr:`indent_level`
+ - :attr:`line_number`
+ - :attr:`logical_line`
+ - :attr:`max_line_length`
+ - :attr:`multiline`
+ - :attr:`noqa`
+ - :attr:`previous_indent_level`
+ - :attr:`previous_logical`
+ - :attr:`tokens`
+ - :attr:`total_lines`
+ - :attr:`verbose`
"""
NOQA_FILE = re.compile(r'\s*# flake8[:=]\s*noqa', re.I)