mirror of
https://github.com/infiniteCable2/opendbc.git
synced 2026-02-18 21:13:51 +08:00
# Conflicts: # opendbc/car/hyundai/hyundaicanfd.py # opendbc/car/rivian/carcontroller.py # opendbc/safety/tests/common.py # opendbc/safety/tests/test_chrysler.py # opendbc/safety/tests/test_hyundai_canfd.py
40 lines
1.4 KiB
YAML
40 lines
1.4 KiB
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.5.0
|
|
hooks:
|
|
- id: check-ast
|
|
- id: check-yaml
|
|
- id: check-merge-conflict
|
|
- id: check-symlinks
|
|
- id: check-executables-have-shebangs
|
|
- id: check-shebang-scripts-are-executable
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.3.0
|
|
hooks:
|
|
- id: codespell
|
|
exclude: '(\.dbc|LICENSE\.md)$'
|
|
args:
|
|
- --ignore-words=.codespellignore
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.11.1
|
|
hooks:
|
|
- id: mypy
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.5.7
|
|
hooks:
|
|
- id: ruff
|
|
- repo: https://github.com/MarcoGorelli/cython-lint
|
|
rev: v0.16.0
|
|
hooks:
|
|
- id: cython-lint
|
|
- id: double-quote-cython-strings
|
|
- repo: https://github.com/cpplint/cpplint
|
|
rev: 1.6.1
|
|
hooks:
|
|
- id: cpplint
|
|
args:
|
|
- --quiet
|
|
- --counting=detailed
|
|
- --linelength=240
|
|
- --filter=-build,-legal,-readability,-runtime,-whitespace,+build/include_subdir,+build/forward_decl,+build/include_what_you_use,+build/deprecated,+whitespace/comma,+whitespace/line_length,+whitespace/empty_if_body,+whitespace/empty_loop_body,+whitespace/empty_conditional_body,+whitespace/forcolon,+whitespace/parens,+whitespace/semicolon,+whitespace/tab,+readability/braces
|