├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── codecov.yml └── workflows │ ├── docs.yml │ ├── pre-commit.yml │ ├── pypi.yml │ ├── tests.yml │ └── unexport.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── docs ├── .nojekyll ├── CNAME ├── authors.md ├── changelog.md ├── contributing.md ├── index.md └── tutorials │ └── useful-features.md ├── mkdocs.yml ├── pyproject.toml ├── setup.cfg ├── src └── unexport │ ├── __init__.py │ ├── __main__.py │ ├── analyzer.py │ ├── color.py │ ├── config.py │ ├── constants.py │ ├── main.py │ ├── py.typed │ ├── refactor.py │ ├── relate.py │ ├── rule.py │ ├── session.py │ ├── typing.py │ └── utils.py ├── tests ├── __init__.py ├── test_analyzer.py ├── test_refactor.py └── test_utils.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/unexport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.github/workflows/unexport.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/action.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | unexport.hakancelik.dev 2 | -------------------------------------------------------------------------------- /docs/authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/docs/authors.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tutorials/useful-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/docs/tutorials/useful-features.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/setup.cfg -------------------------------------------------------------------------------- /src/unexport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/__init__.py -------------------------------------------------------------------------------- /src/unexport/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/__main__.py -------------------------------------------------------------------------------- /src/unexport/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/analyzer.py -------------------------------------------------------------------------------- /src/unexport/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/color.py -------------------------------------------------------------------------------- /src/unexport/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/config.py -------------------------------------------------------------------------------- /src/unexport/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/constants.py -------------------------------------------------------------------------------- /src/unexport/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/main.py -------------------------------------------------------------------------------- /src/unexport/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/unexport/refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/refactor.py -------------------------------------------------------------------------------- /src/unexport/relate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/relate.py -------------------------------------------------------------------------------- /src/unexport/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/rule.py -------------------------------------------------------------------------------- /src/unexport/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/session.py -------------------------------------------------------------------------------- /src/unexport/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/typing.py -------------------------------------------------------------------------------- /src/unexport/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/src/unexport/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/tests/test_analyzer.py -------------------------------------------------------------------------------- /tests/test_refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/tests/test_refactor.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakancelikdev/unexport/HEAD/tox.ini --------------------------------------------------------------------------------