├── .ackrc ├── .bumpversion.cfg ├── .dockerignore ├── .drone.yml ├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── .globality └── build.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── entrypoint.sh ├── logging_format ├── __init__.py ├── api.py ├── tests │ ├── __init__.py │ ├── coverage │ │ └── cov.xml │ ├── test_visitor.py │ └── test_whitelist.py ├── violations.py ├── visitor.py └── whitelist.py ├── setup.cfg └── setup.py /.ackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/.ackrc -------------------------------------------------------------------------------- /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/.dockerignore -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/.drone.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/.gitignore -------------------------------------------------------------------------------- /.globality/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/.globality/build.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/README.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /logging_format/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logging_format/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/logging_format/api.py -------------------------------------------------------------------------------- /logging_format/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logging_format/tests/coverage/cov.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/logging_format/tests/coverage/cov.xml -------------------------------------------------------------------------------- /logging_format/tests/test_visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/logging_format/tests/test_visitor.py -------------------------------------------------------------------------------- /logging_format/tests/test_whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/logging_format/tests/test_whitelist.py -------------------------------------------------------------------------------- /logging_format/violations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/logging_format/violations.py -------------------------------------------------------------------------------- /logging_format/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/logging_format/visitor.py -------------------------------------------------------------------------------- /logging_format/whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/logging_format/whitelist.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/globality-corp/flake8-logging-format/HEAD/setup.py --------------------------------------------------------------------------------