| .. | |||||
| __pycache__ | |||||
| data | |||||
| __init__.py | |||||
| __main__.py | |||||
| _version.py | |||||
| checker.py | |||||
| cli.py | |||||
| config.py | |||||
| parser.py | |||||
| utils.py | |||||
| violations.py | |||||
| wordlists.py |
#! /usr/bin/env python
"""Static analysis tool for checking docstring conventions and style.
The repository is located at:
http://github.com/PyCQA/pydocstyle
"""
__all__ = ()
def main() -> None:
from pydocstyle import cli
cli.main()
if __name__ == '__main__':
main()
| .. | |||||
| __pycache__ | |||||
| data | |||||
| __init__.py | |||||
| __main__.py | |||||
| _version.py | |||||
| checker.py | |||||
| cli.py | |||||
| config.py | |||||
| parser.py | |||||
| utils.py | |||||
| violations.py | |||||
| wordlists.py |