forked from commaai/openpilot
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from arne182/077-clean
077 clean
- Loading branch information
Showing
1,470 changed files
with
30,630 additions
and
301,805 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[run] | ||
concurrency=multiprocessing | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
## discription | ||
Please make a PR against the dev branch usually called something like 075-clean then remove this sentence and add a discription | ||
Please make a PR against the dev branch usually called something like 077-clean then remove this sentence and add a discription |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: master | ||
hooks: | ||
- id: check-ast | ||
- id: check-json | ||
- id: check-xml | ||
- id: check-yaml | ||
- id: check-merge-conflict | ||
- id: check-symlinks | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: master | ||
hooks: | ||
- id: mypy | ||
exclude: '^(pyextra)|(external)|(cereal)|(rednose)|(panda)|(laika)|(opendbc)|(laika_repo)|(rednose_repo)/' | ||
additional_dependencies: ['git+https://github.com/numpy/numpy-stubs'] | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: master | ||
hooks: | ||
- id: flake8 | ||
exclude: '^(pyextra)|(external)|(cereal)|(rednose)|(panda)|(laika)|(opendbc)|(laika_repo)|(rednose_repo)|(selfdrive/debug)/' | ||
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: '^(pyextra)|(external)|(cereal)|(rednose)|(panda)|(laika)|(laika_repo)|(rednose_repo)/' | ||
- repo: local | ||
hooks: | ||
- id: cppcheck | ||
name: cppcheck | ||
entry: cppcheck | ||
language: system | ||
types: [c++] | ||
exclude: '^(phonelibs)|(external)|(cereal)|(opendbc)|(panda)|(tools)|(selfdrive/modeld/thneed/debug)|(selfdrive/modeld/test)|(selfdrive/camerad/test)/' | ||
args: | ||
- --error-exitcode=1 | ||
- --quiet | ||
- --force | ||
- -j8 |
Oops, something went wrong.