├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── run_tests.py ├── setup.cfg ├── setup.py ├── src └── pep8ext_naming.py ├── testsuite ├── N801.py ├── N802.py ├── N803.py ├── N804.py ├── N805.py ├── N806.py ├── N807.py ├── N808.py ├── N80x.py ├── N815.py ├── N816.py ├── N818.py ├── N81x.py └── N8xx.py └── tox.ini /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/README.rst -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/setup.py -------------------------------------------------------------------------------- /src/pep8ext_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/src/pep8ext_naming.py -------------------------------------------------------------------------------- /testsuite/N801.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N801.py -------------------------------------------------------------------------------- /testsuite/N802.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N802.py -------------------------------------------------------------------------------- /testsuite/N803.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N803.py -------------------------------------------------------------------------------- /testsuite/N804.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N804.py -------------------------------------------------------------------------------- /testsuite/N805.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N805.py -------------------------------------------------------------------------------- /testsuite/N806.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N806.py -------------------------------------------------------------------------------- /testsuite/N807.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N807.py -------------------------------------------------------------------------------- /testsuite/N808.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N808.py -------------------------------------------------------------------------------- /testsuite/N80x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N80x.py -------------------------------------------------------------------------------- /testsuite/N815.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N815.py -------------------------------------------------------------------------------- /testsuite/N816.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N816.py -------------------------------------------------------------------------------- /testsuite/N818.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N818.py -------------------------------------------------------------------------------- /testsuite/N81x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N81x.py -------------------------------------------------------------------------------- /testsuite/N8xx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/testsuite/N8xx.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PyCQA/pep8-naming/HEAD/tox.ini --------------------------------------------------------------------------------