repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.4.0 hooks: - id: check-ast - id: check-yaml - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.5.1 hooks: - id: mypy - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.0.285 hooks: - id: ruff - repo: local hooks: - id: cppcheck name: cppcheck entry: cppcheck language: system types: [c++] exclude: '^(messaging/msgq_tests.cc|messaging/test_runner.cc)' args: - --error-exitcode=1 - --inline-suppr - --language=c++ - --force - --quiet - -j4 - repo: https://github.com/cpplint/cpplint rev: 1.6.1 hooks: - id: cpplint args: - --quiet - --counting=detailed - --linelength=240 - --filter=-legal,-build/include_order,-readability/casting,-whitespace/braces,-whitespace/indent,-whitespace/operators,-build/c++11,-readability/todo,-runtime/explicit,-runtime/int,-whitespace/comments,-readability/braces,-runtime/arrays,-runtime/references - repo: https://github.com/codespell-project/codespell rev: v2.2.5 hooks: - id: codespell args: - -L ned - --builtins clear,rare,informal,usage,code,names,en-GB_to_en-US