├── .github ├── CONTRIBUTING.md ├── dependabot.yml ├── release.yml └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── noxfile.py ├── pyproject.toml ├── src └── flake8_errmsg │ ├── __init__.py │ ├── __main__.py │ └── py.typed └── tests ├── example1.py └── test_package.py /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/README.md -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/flake8_errmsg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/src/flake8_errmsg/__init__.py -------------------------------------------------------------------------------- /src/flake8_errmsg/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/src/flake8_errmsg/__main__.py -------------------------------------------------------------------------------- /src/flake8_errmsg/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/example1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/tests/example1.py -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/henryiii/flake8-errmsg/HEAD/tests/test_package.py --------------------------------------------------------------------------------