diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2013-07-03 23:40:50 -0400 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2013-07-03 23:40:50 -0400 |
| commit | e2eb1308b124014084b2be111ddcf5ec54795aca (patch) | |
| tree | 2d2fa770ecb44351091e3ffb8859c4a2933a6a05 /docs | |
| parent | 26283741b91484a7aeb6b10c0f42cb30dba9dc4f (diff) | |
| download | flake8-e2eb1308b124014084b2be111ddcf5ec54795aca.tar.gz | |
Minor improvement to docs
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/config.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/config.rst b/docs/config.rst index 042f715..d143b13 100644 --- a/docs/config.rst +++ b/docs/config.rst @@ -12,6 +12,8 @@ Example:: [flake8] ignore = E226,E302,E41 max-line-length = 160 + exclude = tests/* + max-complexity = 10 Per-Project ----------- @@ -26,3 +28,27 @@ Default If the ``ignore`` option is not in the configuration and not in the arguments, only the error codes ``E226`` and ``E241/E242`` are ignored (see the :ref:`warning and error codes <error-codes>`). + +Settings +-------- + +This is a (likely incomplete) list of settings that can be used in your config +file. In general, any settings that pep8 supports we also support and we add +the ability to set ``max-complexity`` as well. + +- ``exclude``: comma-separated filename and glob patterns + default: ``.svn,CVS,.bzr,.hg,.git,__pycache`` + +- ``filename``: comma-separated filename and glob patterns + default: ``*.py`` + +- ``select``: select errors and warnings to enable which are off by default + +- ``ignore``: skip errors or warnings + +- ``max-line-length``: set maximum allowed line length + default: 79 + +- ``format``: set the error format + +- ``max-complexity``: McCabe complexity threshold |
