diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..24f053004efdbe56df554597f7309bb4b94975d8 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,30 @@ +exclude: tests/test_python-syntax_error.py +repos: +- repo: https://github.com/pre-commit/mirrors-clang-format + rev: v13.0.1 + hooks: + - id: clang-format + args: [-i, --style=Google] +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.1.0 + hooks: + - id: trailing-whitespace + - id: check-added-large-files + - id: check-ast + - id: check-merge-conflict + - id: check-symlinks + - id: check-toml + - id: check-yaml + - id: debug-statements + - id: detect-private-key + - id: end-of-file-fixer + - id: mixed-line-ending + - id: trailing-whitespace +- repo: https://github.com/psf/black + rev: 22.3.0 + hooks: + - id: black +- repo: https://github.com/PyCQA/flake8 + rev: 4.0.1 + hooks: + - id: flake8 diff --git a/README.md b/README.md index ff0419c81681eaf8d5e31b3d9991543ce10e4bca..514c78a8f04a9277a419cb037bc25fec06b8de97 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ [](https://anaconda.org/conda-forge/example-robot-data) [](https://anaconda.org/conda-forge/example-robot-data) [](https://badge.fury.io/py/example-robot-data) +[](https://results.pre-commit.ci/latest/github/gepetto/example-robot-data/master) +[](https://github.com/psf/black) This repository includes a set of robot descriptions that are aimed to be used in benchmarking, unit-tests, teachings, diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..1a17557071f27ad42492ac50938837012a43538e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[tool.isort] +line_length = 88 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000000000000000000000000000000000000..4155cd476bc92ae6f1511bc3f6eb31b696607e30 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,4 @@ +[flake8] +max-line-length = 88 +exclude = tests/test_python-syntax_error.py +ignore = E226, E704, E24, E121, W504, E126, E123, W503, E203