Home
last modified time | relevance | path

Searched full:flake8 (Results 1 – 25 of 79) sorted by relevance

1234

/external/python/asn1crypto/dev/
Dlint.py8 import flake8
9 if not hasattr(flake8, '__version_info__') or flake8.__version_info__ < (3,):
10 from flake8.engine import get_style_guide
12 from flake8.api.legacy import get_style_guide
17 Runs flake8 lint
20 A bool - if flake8 did not find any errors
23 print('Running flake8 %s' % flake8.__version__)
/external/python/cachetools/
Dtox.ini2 envlist = check-manifest,docs,doctest,flake8,py
31 [testenv:flake8]
33 flake8
34 flake8-black; implementation_name == "cpython"
35 flake8-bugbear
36 flake8-import-order
38 flake8
/external/bcc/
D.travis.yml10 - name: "flake8 lint on Python 2.7"
12 script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
13 - name: "flake8 lint on Python 3.7"
16 script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
20 install: pip install flake8
/external/markdown/
Dtox.ini2 envlist = py{37, 38, 39, 310}, pypy{37, 38, 39}, pygments, flake8, checkspelling, pep517check, chec…
21 [testenv:flake8]
22 deps = flake8 argument
23 commands = flake8 {toxinidir}/markdown {toxinidir}/tests {toxinidir}/setup.py argument
42 [flake8] section
/external/python/typing/
Dtest-requirements.txt1 flake8
2 flake8-bugbear
3 flake8-pyi
D.flake8-tests4 # $ flake8 --config=.flake8-tests [SOURCES]
8 [flake8]
D.flake81 [flake8]
14 # and its own specific config in .flake8-tests
/external/python/google-api-python-client/samples/compute/
Dnoxfile.py126 # Linting with flake8.
150 session.install("flake8", "flake8-import-order")
152 session.install("flake8", "flake8-import-order", "flake8-annotations")
160 session.run("flake8", *args)
/external/python/oauth2client/
Dtox.ini159 [testenv:flake8]
160 commands = flake8 --import-order-style google {posargs} argument
162 flake8-putty
163 flake8-import-order
165 [flake8] section
/external/python/uritemplates/
Dtox.ini18 flake8
20 flake8 {posargs} uritemplate tests setup.py
30 [flake8] section
/external/python/httplib2/script/
Dtest21 flake8 python2/
23 flake8 python3/ tests/
53 # ./venv-27/bin/flake8 python2/
54 # ./venv-36/bin/flake8 python3/ tests/
/external/python/pybind11/
D.pre-commit-config.yaml47 # Flake8 also supports pre-commit natively (same author)
48 - repo: https://gitlab.com/pycqa/flake8
51 - id: flake8
52 additional_dependencies: [flake8-bugbear, pep8-naming]
/external/python/jinja/
D.pre-commit-config.yaml16 - repo: https://gitlab.com/pycqa/flake8
19 - id: flake8
20 additional_dependencies: [flake8-bugbear]
Dsetup.cfg22 [flake8]
25 # F = flake8 pyflakes
/external/python/markupsafe/
D.pre-commit-config.yaml16 - repo: https://gitlab.com/pycqa/flake8
19 - id: flake8
20 additional_dependencies: [flake8-bugbear]
/external/yapf/.github/workflows/
Dci.yml26 - name: Lint with flake8
28 python -m pip install toml flake8
29 flake8 . --statistics
/external/python/typing/.github/workflows/
Dci.yml61 run: flake8
64 run: flake8 --config=.flake8-tests typing_extensions/src/test_typing_extensions.py
/external/python/python-api-core/
Dnoxfile.py26 # Black and flake8 clash on the syntax for ignoring flake8's F401 in this file.
64 session.install("flake8", "flake8-import-order", BLACK_VERSION)
69 session.run("flake8", "google", "tests")
D.flake81 [flake8]
4 # https://github.com/PyCQA/flake8-import-order/issues/111
/external/python/setuptools/
Dpytest.ini13 # Suppress deprecation warning in flake8
14 ignore:SelectableGroups dict interface is deprecated::flake8
21 # tholo/pytest-flake8#83
Dpyproject.toml17 [pytest.enabler.flake8]
18 addopts = "--flake8"
/external/python/typing/docs/
Dindex.rst72 * `flake8-pyi <https://github.com/ambv/flake8-pyi>`_, a plugin for the
73 `flake8 <https://flake8.pycqa.org/>`_ linter that adds support for type
/external/python/pyee/
Drequirements_dev.txt2 flake8==3.8.3
3 flake8-black==0.2.3
/external/python/asn1crypto/requires/
Dlint7 flake8 == 3.5.0 ; python_version == '3.3'
14 flake8 == 3.7.9 ; python_version == '2.7' or python_version >= '3.4'
/external/python/setuptools/setuptools.egg-info/
Drequires.txt20 pytest-flake8
24 flake8-2020

1234