├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGES.txt ├── CONTRIBUTING.rst ├── LICENSE ├── Makefile ├── README.rst ├── dev-requirements.txt ├── docs ├── Makefile ├── advanced.rst ├── api.rst ├── conf.py ├── developer.rst ├── index.rst ├── intro.rst └── make.bat ├── pycodestyle.py ├── setup.cfg ├── setup.py ├── testing ├── __init__.py ├── data │ ├── E10.py │ ├── E11.py │ ├── E12.py │ ├── E12not.py │ ├── E20.py │ ├── E21.py │ ├── E22.py │ ├── E23.py │ ├── E24.py │ ├── E25.py │ ├── E26.py │ ├── E27.py │ ├── E30.py │ ├── E30not.py │ ├── E40.py │ ├── E50.py │ ├── E70.py │ ├── E71.py │ ├── E72.py │ ├── E73.py │ ├── E74.py │ ├── E90.py │ ├── W19.py │ ├── W29.py │ ├── W39.py │ ├── W60.py │ ├── crlf.py │ ├── latin-1.py │ ├── noqa.py │ ├── python3.py │ ├── python310.py │ ├── python311.py │ ├── python312.py │ ├── python313.py │ ├── python314.py │ ├── python35.py │ ├── python36.py │ ├── python38.py │ ├── python39.py │ ├── utf-8-bom.py │ └── utf-8.py └── support.py ├── tests ├── __init__.py ├── test_E101.py ├── test_E901.py ├── test_all.py ├── test_api.py ├── test_blank_lines.py ├── test_data.py ├── test_parser.py ├── test_pycodestyle.py ├── test_self_doctests.py ├── test_shell.py └── test_util.py └── tox.ini /.gitattributes: -------------------------------------------------------------------------------- 1 | testing/data/E90.py -text 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | tox 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/docs/advanced.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/developer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/docs/developer.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/docs/make.bat -------------------------------------------------------------------------------- /pycodestyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/pycodestyle.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/setup.py -------------------------------------------------------------------------------- /testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/data/E10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E10.py -------------------------------------------------------------------------------- /testing/data/E11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E11.py -------------------------------------------------------------------------------- /testing/data/E12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E12.py -------------------------------------------------------------------------------- /testing/data/E12not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E12not.py -------------------------------------------------------------------------------- /testing/data/E20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E20.py -------------------------------------------------------------------------------- /testing/data/E21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E21.py -------------------------------------------------------------------------------- /testing/data/E22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E22.py -------------------------------------------------------------------------------- /testing/data/E23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E23.py -------------------------------------------------------------------------------- /testing/data/E24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E24.py -------------------------------------------------------------------------------- /testing/data/E25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E25.py -------------------------------------------------------------------------------- /testing/data/E26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E26.py -------------------------------------------------------------------------------- /testing/data/E27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E27.py -------------------------------------------------------------------------------- /testing/data/E30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E30.py -------------------------------------------------------------------------------- /testing/data/E30not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E30not.py -------------------------------------------------------------------------------- /testing/data/E40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E40.py -------------------------------------------------------------------------------- /testing/data/E50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E50.py -------------------------------------------------------------------------------- /testing/data/E70.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E70.py -------------------------------------------------------------------------------- /testing/data/E71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E71.py -------------------------------------------------------------------------------- /testing/data/E72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E72.py -------------------------------------------------------------------------------- /testing/data/E73.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E73.py -------------------------------------------------------------------------------- /testing/data/E74.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E74.py -------------------------------------------------------------------------------- /testing/data/E90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/E90.py -------------------------------------------------------------------------------- /testing/data/W19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/W19.py -------------------------------------------------------------------------------- /testing/data/W29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/W29.py -------------------------------------------------------------------------------- /testing/data/W39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/W39.py -------------------------------------------------------------------------------- /testing/data/W60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/W60.py -------------------------------------------------------------------------------- /testing/data/crlf.py: -------------------------------------------------------------------------------- 1 | '''\ 2 | test 3 | ''' 4 | -------------------------------------------------------------------------------- /testing/data/latin-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/latin-1.py -------------------------------------------------------------------------------- /testing/data/noqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/noqa.py -------------------------------------------------------------------------------- /testing/data/python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python3.py -------------------------------------------------------------------------------- /testing/data/python310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python310.py -------------------------------------------------------------------------------- /testing/data/python311.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python311.py -------------------------------------------------------------------------------- /testing/data/python312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python312.py -------------------------------------------------------------------------------- /testing/data/python313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python313.py -------------------------------------------------------------------------------- /testing/data/python314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python314.py -------------------------------------------------------------------------------- /testing/data/python35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python35.py -------------------------------------------------------------------------------- /testing/data/python36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python36.py -------------------------------------------------------------------------------- /testing/data/python38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python38.py -------------------------------------------------------------------------------- /testing/data/python39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/python39.py -------------------------------------------------------------------------------- /testing/data/utf-8-bom.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | hello = 'こんにちわ' 5 | 6 | # EOF 7 | -------------------------------------------------------------------------------- /testing/data/utf-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/data/utf-8.py -------------------------------------------------------------------------------- /testing/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/testing/support.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_E101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_E101.py -------------------------------------------------------------------------------- /tests/test_E901.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_E901.py -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_blank_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_blank_lines.py -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_pycodestyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_pycodestyle.py -------------------------------------------------------------------------------- /tests/test_self_doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_self_doctests.py -------------------------------------------------------------------------------- /tests/test_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_shell.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pycodestyle/HEAD/tox.ini --------------------------------------------------------------------------------