├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── cpp-linter.yml │ ├── examples │ ├── only-PR-comments.yml │ ├── only-clang-format.yml │ └── only-clang-tidy.yml │ ├── labeler.yml │ ├── mkdocs-deploy.yml │ ├── pre-commit.yml │ ├── release-drafter.yml │ ├── release.yml │ ├── self-test.yml │ └── stale.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── .readthedocs.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── action.yml ├── cspell.config.yml ├── docs ├── README.rst ├── action.yml ├── badge_hook.py ├── contributing-guidelines.md ├── examples │ ├── demo │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── CMakeLists.txt │ │ ├── compile_flags.txt │ │ ├── demo.cpp │ │ └── demo.hpp │ └── index.md ├── gen_io_doc.py ├── images │ ├── annotations-clang-format.png │ ├── annotations-clang-tidy.png │ ├── comment.png │ ├── favicon.ico │ ├── format-review.png │ ├── format-suggestion.png │ ├── logo.png │ ├── step-summary.png │ └── tidy-review.png ├── index.md ├── permissions.md ├── pr-review-caveats.md └── stylesheets │ └── extra.css ├── mkdocs.yml ├── pyproject.toml └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cpp-linter/developers 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | _extends: .github 2 | -------------------------------------------------------------------------------- /.github/workflows/cpp-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/cpp-linter.yml -------------------------------------------------------------------------------- /.github/workflows/examples/only-PR-comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/examples/only-PR-comments.yml -------------------------------------------------------------------------------- /.github/workflows/examples/only-clang-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/examples/only-clang-format.yml -------------------------------------------------------------------------------- /.github/workflows/examples/only-clang-tidy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/examples/only-clang-tidy.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/mkdocs-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/mkdocs-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/self-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/self-test.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/action.yml -------------------------------------------------------------------------------- /cspell.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/cspell.config.yml -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/action.yml -------------------------------------------------------------------------------- /docs/badge_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/badge_hook.py -------------------------------------------------------------------------------- /docs/contributing-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/contributing-guidelines.md -------------------------------------------------------------------------------- /docs/examples/demo/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/examples/demo/.clang-format -------------------------------------------------------------------------------- /docs/examples/demo/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/examples/demo/.clang-tidy -------------------------------------------------------------------------------- /docs/examples/demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/examples/demo/CMakeLists.txt -------------------------------------------------------------------------------- /docs/examples/demo/compile_flags.txt: -------------------------------------------------------------------------------- 1 | -Wall 2 | -Werror 3 | -------------------------------------------------------------------------------- /docs/examples/demo/demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/examples/demo/demo.cpp -------------------------------------------------------------------------------- /docs/examples/demo/demo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/examples/demo/demo.hpp -------------------------------------------------------------------------------- /docs/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/examples/index.md -------------------------------------------------------------------------------- /docs/gen_io_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/gen_io_doc.py -------------------------------------------------------------------------------- /docs/images/annotations-clang-format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/annotations-clang-format.png -------------------------------------------------------------------------------- /docs/images/annotations-clang-tidy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/annotations-clang-tidy.png -------------------------------------------------------------------------------- /docs/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/comment.png -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/format-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/format-review.png -------------------------------------------------------------------------------- /docs/images/format-suggestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/format-suggestion.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/step-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/step-summary.png -------------------------------------------------------------------------------- /docs/images/tidy-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/images/tidy-review.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/permissions.md -------------------------------------------------------------------------------- /docs/pr-review-caveats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/pr-review-caveats.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpp-linter/cpp-linter-action/HEAD/uv.lock --------------------------------------------------------------------------------