├── .coveragerc ├── .github └── workflows │ ├── all_core_tests.yml │ ├── release_platform_tests.yml │ ├── release_sdist_test.yml │ └── release_testdir_coverage.yml ├── .gitignore ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── requirements-ci.txt ├── requirements-dev.txt ├── requirements-flake8.txt ├── setup.py ├── src └── flake8_absolute_import │ ├── __init__.py │ ├── core.py │ ├── py.typed │ └── version.py ├── tests └── test_plugin.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/all_core_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/.github/workflows/all_core_tests.yml -------------------------------------------------------------------------------- /.github/workflows/release_platform_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/.github/workflows/release_platform_tests.yml -------------------------------------------------------------------------------- /.github/workflows/release_sdist_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/.github/workflows/release_sdist_test.yml -------------------------------------------------------------------------------- /.github/workflows/release_testdir_coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/.github/workflows/release_testdir_coverage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/requirements-ci.txt -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-flake8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/requirements-flake8.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/setup.py -------------------------------------------------------------------------------- /src/flake8_absolute_import/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/src/flake8_absolute_import/__init__.py -------------------------------------------------------------------------------- /src/flake8_absolute_import/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/src/flake8_absolute_import/core.py -------------------------------------------------------------------------------- /src/flake8_absolute_import/py.typed: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/flake8_absolute_import/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/src/flake8_absolute_import/version.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bskinn/flake8-absolute-import/HEAD/tox.ini --------------------------------------------------------------------------------