From 47f1b7f91dc05e5453cd49e97e3607b878c76555 Mon Sep 17 00:00:00 2001 From: Guilhem Saurel <guilhem.saurel@laas.fr> Date: Tue, 5 Apr 2022 10:58:55 +0200 Subject: [PATCH] update tools & badges --- .pre-commit-config.yaml | 32 ++++++++++++++++++++++++++++++++ README.md | 6 ++++-- pyproject.toml | 2 ++ setup.cfg | 4 ++++ 4 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 .pre-commit-config.yaml create mode 100644 pyproject.toml create mode 100644 setup.cfg diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..7b987f2 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,32 @@ +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: check-added-large-files + - id: check-ast + - id: check-executables-have-shebangs + - id: check-json + - id: check-merge-conflict + - id: check-symlinks + - id: check-toml + - id: check-yaml + - id: debug-statements + - id: destroyed-symlinks + - id: detect-private-key + - id: end-of-file-fixer + - id: fix-byte-order-marker + - 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 41bfa02..6ad4995 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ # bezier_COM_Traj -[](https://gepgitlab.laas.fr/humanoid-path-planner/hpp-bezier-com-traj/commits/master) -[](http://projects.laas.fr/gepetto/doc/humanoid-path-planner/hpp-bezier-com-traj/master/coverage/) +[](https://gitlab.laas.fr/humanoid-path-planner/hpp-bezier-com-traj/commits/master) +[](http://projects.laas.fr/gepetto/doc/humanoid-path-planner/hpp-bezier-com-traj/master/coverage/) +[](https://github.com/psf/black) +[](https://results.pre-commit.ci/latest/github/humanoid-path-planner/hpp-bezier-com-traj) Copyright 2018-2020 LAAS-CNRS diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7ad22b4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[tool.black] +exclude = "cmake" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..98698ff --- /dev/null +++ b/setup.cfg @@ -0,0 +1,4 @@ +[flake8] +exclude = cmake +max-line-length = 88 +ignore = E226, E704, E24, E121, W504, E126, E123, W503, E203 -- GitLab