gitextract_04wbqrob/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── .idea/ │ ├── .gitignore │ ├── encodings.xml │ ├── inspectionProfiles/ │ │ └── Project_Default.xml │ ├── misc.xml │ ├── modules.xml │ ├── pyProjectModel.xml │ ├── pygount.iml │ └── vcs.xml ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── docs/ │ ├── api.md │ ├── background.md │ ├── changes.md │ ├── continuous-integration.md │ ├── contributing.md │ ├── index.md │ ├── installation.md │ ├── json.md │ └── usage.md ├── mkdocs.yaml ├── pygount/ │ ├── __init__.py │ ├── analysis.py │ ├── command.py │ ├── common.py │ ├── git_storage.py │ ├── lexers.py │ ├── summary.py │ ├── write.py │ └── xmldialect.py ├── pyproject.toml ├── scripts/ │ ├── build_documentation.sh │ ├── build_movie.sh │ ├── test_coverage.sh │ └── update_dependencies.sh └── tests/ ├── __init__.py ├── _common.py ├── test_analysis.py ├── test_command.py ├── test_common.py ├── test_encoding.py ├── test_git_storage.py ├── test_lexers.py ├── test_summary.py ├── test_write.py └── test_xmldialect.py