├── .github ├── dependabot.yaml └── workflows │ ├── check.yaml │ ├── codecov.yaml │ └── publish.yaml ├── .gitignore ├── LICENSE.txt ├── README.rst ├── pyproject.toml ├── src └── flake8_requirements │ ├── __init__.py │ ├── checker.py │ └── modules.py ├── test ├── test_checker.py ├── test_pep621.py ├── test_poetry.py ├── test_requirements.py ├── test_requirements.txt ├── test_setup.cfg └── test_setup.py └── tox.ini /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/codecov.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/.github/workflows/codecov.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/flake8_requirements/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/src/flake8_requirements/__init__.py -------------------------------------------------------------------------------- /src/flake8_requirements/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/src/flake8_requirements/checker.py -------------------------------------------------------------------------------- /src/flake8_requirements/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/src/flake8_requirements/modules.py -------------------------------------------------------------------------------- /test/test_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/test/test_checker.py -------------------------------------------------------------------------------- /test/test_pep621.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/test/test_pep621.py -------------------------------------------------------------------------------- /test/test_poetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/test/test_poetry.py -------------------------------------------------------------------------------- /test/test_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/test/test_requirements.py -------------------------------------------------------------------------------- /test/test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/test/test_requirements.txt -------------------------------------------------------------------------------- /test/test_setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/test/test_setup.cfg -------------------------------------------------------------------------------- /test/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/test/test_setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arkq/flake8-requirements/HEAD/tox.ini --------------------------------------------------------------------------------