mirror of https://github.com/commaai/cereal.git
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
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.3.0
|
|
hooks:
|
|
- id: mypy
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 6.0.0
|
|
hooks:
|
|
- id: flake8
|
|
args:
|
|
- --select=F,E112,E113,E304,E501,E502,E701,E702,E703,E71,E72,E731,W191,W6
|
|
- --max-line-length=240
|
|
- --statistics
|
|
- repo: local
|
|
hooks:
|
|
- id: pylint
|
|
name: pylint
|
|
entry: pylint
|
|
language: system
|
|
types: [python]
|
|
exclude: 'site_scons/'
|
|
args:
|
|
- --disable=C,R,W0613,W0511,W0212,W0201,W0311,W0106,W0603,W0621,W0703,E1136
|
|
- 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
|