Coverage for src/docstring_format_checker/__init__.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-09-04 12:45 +0000

1""" 

2Docstring Format Checker. 

3 

4A CLI tool to check and validate Python docstring formatting and completeness. 

5""" 

6 

7__version__ = "0.1.0" 

8__author__ = "Chris Mahoney" 

9__email__ = "docstring-format-checker@data-science-extensions.com" 

10 

11 

12# ## Local First Party Imports ---- 

13from docstring_format_checker.config import DEFAULT_CONFIG, load_config 

14from docstring_format_checker.core import DocstringChecker, SectionConfig 

15 

16 

17__all__: list[str] = [ 

18 "DocstringChecker", 

19 "SectionConfig", 

20 "load_config", 

21 "DEFAULT_CONFIG", 

22]