mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-14 00:14:46 +00:00
Merge branch 'merge-request/60'
This commit is contained in:
commit
2cfc2777c1
12 changed files with 18 additions and 18 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
pep8
|
pycodestyle
|
||||||
pyflakes
|
pyflakes
|
||||||
mccabe
|
mccabe
|
||||||
mock
|
mock
|
||||||
|
|
|
||||||
|
|
@ -232,7 +232,7 @@ man_pages = [
|
||||||
# dir menu entry, description, category)
|
# dir menu entry, description, category)
|
||||||
texinfo_documents = [
|
texinfo_documents = [
|
||||||
('index', 'flake8', u'flake8 Documentation', u'Tarek Ziade',
|
('index', 'flake8', u'flake8 Documentation', u'Tarek Ziade',
|
||||||
'flake8', 'Code checking using pep8, pyflakes and mccabe',
|
'flake8', 'Code checking using pycodestyle, pyflakes and mccabe',
|
||||||
'Miscellaneous'),
|
'Miscellaneous'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,8 +42,8 @@ Settings
|
||||||
--------
|
--------
|
||||||
|
|
||||||
This is a (likely incomplete) list of settings that can be used in your config
|
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
|
file. In general, any settings that ``pycodestyle`` supports we also support and
|
||||||
the ability to set ``max-complexity`` as well.
|
we add the ability to set ``max-complexity`` as well.
|
||||||
|
|
||||||
- ``exclude``: comma-separated filename and glob patterns
|
- ``exclude``: comma-separated filename and glob patterns
|
||||||
default: ``.svn,CVS,.bzr,.hg,.git,__pycache__``
|
default: ``.svn,CVS,.bzr,.hg,.git,__pycache__``
|
||||||
|
|
|
||||||
|
|
@ -18,9 +18,9 @@ Documentation
|
||||||
Original Projects
|
Original Projects
|
||||||
=================
|
=================
|
||||||
|
|
||||||
Flake8 is just a glue project, all the merits go to the creators of the original
|
Flake8 is just a glue project, all the merits go to the creators and maintainers
|
||||||
projects:
|
of the original projects:
|
||||||
|
|
||||||
- pep8: https://github.com/jcrocholl/pep8
|
- pycodestyle: https://github.com/pycqa/pycodestyle
|
||||||
- PyFlakes: https://launchpad.net/pyflakes
|
- PyFlakes: https://launchpad.net/pyflakes
|
||||||
- McCabe: http://nedbatchelder.com/blog/200803/python_code_complexity_microtool.html
|
- McCabe: http://nedbatchelder.com/blog/200803/python_code_complexity_microtool.html
|
||||||
|
|
|
||||||
|
|
@ -4,15 +4,15 @@ Warning / Error codes
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
The convention of Flake8 is to assign a code to each error or warning, like
|
The convention of Flake8 is to assign a code to each error or warning, like
|
||||||
the ``pep8`` tool. These codes are used to configure the list of errors
|
the ``pycodestyle`` tool. These codes are used to configure the list of errors
|
||||||
which are selected or ignored.
|
which are selected or ignored.
|
||||||
|
|
||||||
Each code consists of an upper case ASCII letter followed by three digits.
|
Each code consists of an upper case ASCII letter followed by three digits.
|
||||||
The recommendation is to use a different prefix for each plugin. A list of the
|
The recommendation is to use a different prefix for each plugin. A list of the
|
||||||
known prefixes is published below:
|
known prefixes is published below:
|
||||||
|
|
||||||
- ``E***``/``W***``: `pep8 errors and warnings
|
- ``E***``/``W***``: `pycodestyle errors and warnings
|
||||||
<http://pep8.readthedocs.org/en/latest/intro.html#error-codes>`_
|
<https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes>`_
|
||||||
- ``F***``: PyFlakes codes (see below)
|
- ``F***``: PyFlakes codes (see below)
|
||||||
- ``C9**``: McCabe complexity plugin `mccabe
|
- ``C9**``: McCabe complexity plugin `mccabe
|
||||||
<https://github.com/flintwork/mccabe>`_
|
<https://github.com/flintwork/mccabe>`_
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ else:
|
||||||
demandimport.disable()
|
demandimport.disable()
|
||||||
import os
|
import os
|
||||||
|
|
||||||
import pep8
|
import pycodestyle as pep8
|
||||||
import pyflakes
|
import pyflakes
|
||||||
import pyflakes.checker
|
import pyflakes.checker
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import re
|
||||||
import sys
|
import sys
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
import pep8
|
import pycodestyle as pep8
|
||||||
|
|
||||||
from flake8 import __version__
|
from flake8 import __version__
|
||||||
from flake8 import callbacks
|
from flake8 import callbacks
|
||||||
|
|
@ -44,7 +44,7 @@ def _load_entry_point(entry_point, verify_requirements):
|
||||||
def _register_extensions():
|
def _register_extensions():
|
||||||
"""Register all the extensions."""
|
"""Register all the extensions."""
|
||||||
extensions = util.OrderedSet()
|
extensions = util.OrderedSet()
|
||||||
extensions.add(('pep8', pep8.__version__))
|
extensions.add(('pycodestyle', pep8.__version__))
|
||||||
parser_hooks = []
|
parser_hooks = []
|
||||||
options_hooks = []
|
options_hooks = []
|
||||||
ignored_hooks = []
|
ignored_hooks = []
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import with_statement
|
from __future__ import with_statement
|
||||||
import os
|
import os
|
||||||
import pep8
|
import pycodestyle as pep8
|
||||||
import sys
|
import sys
|
||||||
import stat
|
import stat
|
||||||
from subprocess import Popen, PIPE
|
from subprocess import Popen, PIPE
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
import pep8
|
import pycodestyle as pep8
|
||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
from flake8.engine import get_parser, get_style_guide
|
from flake8.engine import get_parser, get_style_guide
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ try:
|
||||||
except ImportError: # Python 2.5
|
except ImportError: # Python 2.5
|
||||||
multiprocessing = None
|
multiprocessing = None
|
||||||
|
|
||||||
import pep8
|
import pycodestyle as pep8
|
||||||
|
|
||||||
__all__ = ['multiprocessing', 'BaseQReport', 'QueueReport']
|
__all__ = ['multiprocessing', 'BaseQReport', 'QueueReport']
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ except ImportError:
|
||||||
import mock # < PY33
|
import mock # < PY33
|
||||||
|
|
||||||
from flake8 import engine, util, __version__, reporter
|
from flake8 import engine, util, __version__, reporter
|
||||||
import pep8
|
import pycodestyle as pep8
|
||||||
|
|
||||||
|
|
||||||
class TestEngine(unittest.TestCase):
|
class TestEngine(unittest.TestCase):
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -50,7 +50,7 @@ setup(
|
||||||
packages=["flake8", "flake8.tests"],
|
packages=["flake8", "flake8.tests"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"pyflakes >= 0.8.1, < 1.3, != 1.2.0, != 1.2.1, != 1.2.2",
|
"pyflakes >= 0.8.1, < 1.3, != 1.2.0, != 1.2.1, != 1.2.2",
|
||||||
"pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2",
|
"pycodestyle >= 2.0, < 2.1",
|
||||||
"mccabe >= 0.2.1, < 0.6",
|
"mccabe >= 0.2.1, < 0.6",
|
||||||
],
|
],
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue