Skip to content

Commit 4f61ade

Browse files
committed
update tools & badges
1 parent 1b4c634 commit 4f61ade

File tree

4 files changed

+48
-4
lines changed

4 files changed

+48
-4
lines changed

.pre-commit-config.yaml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
ci:
2+
autoupdate_branch: 'devel'
3+
repos:
4+
- repo: https://github.com/pre-commit/mirrors-clang-format
5+
rev: v14.0.6
6+
hooks:
7+
- id: clang-format
8+
args: [--style=Google]
9+
- repo: https://github.com/pre-commit/pre-commit-hooks
10+
rev: v4.3.0
11+
hooks:
12+
- id: check-added-large-files
13+
- id: check-ast
14+
- id: check-executables-have-shebangs
15+
- id: check-json
16+
- id: check-merge-conflict
17+
- id: check-symlinks
18+
- id: check-toml
19+
- id: check-yaml
20+
- id: debug-statements
21+
- id: destroyed-symlinks
22+
- id: detect-private-key
23+
- id: end-of-file-fixer
24+
- id: fix-byte-order-marker
25+
- id: mixed-line-ending
26+
- id: trailing-whitespace
27+
- repo: https://github.com/psf/black
28+
rev: 22.8.0
29+
hooks:
30+
- id: black
31+
- repo: https://github.com/PyCQA/flake8
32+
rev: 5.0.4
33+
hooks:
34+
- id: flake8
35+
- repo: https://github.com/cheshirekow/cmake-format-precommit
36+
rev: v0.6.13
37+
hooks:
38+
- id: cmake-format

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
dynamic-graph bindings
2-
======================
1+
# Dynamic Graph bindings
32

4-
[![Building Status](https://travis-ci.org/stack-of-tasks/dynamic_graph_bridge.svg?branch=master)](https://travis-ci.org/stack-of-tasks/dynamic_graph_bridge)
53
[![Pipeline status](https://gitlab.laas.fr/stack-of-tasks/dynamic_graph_bridge/badges/master/pipeline.svg)](https://gitlab.laas.fr/stack-of-tasks/dynamic_graph_bridge/commits/master)
6-
[![Coverage report](https://gitlab.laas.fr/stack-of-tasks/dynamic_graph_bridge/badges/master/coverage.svg?job=doc-coverage)](http://projects.laas.fr/gepetto/doc/stack-of-tasks/dynamic_graph_bridge/master/coverage/)
4+
[![Coverage report](https://gitlab.laas.fr/stack-of-tasks/dynamic_graph_bridge/badges/master/coverage.svg?job=doc-coverage)](https://gepettoweb.laas.fr/doc/stack-of-tasks/dynamic_graph_bridge/master/coverage/)
5+
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
6+
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/stack-of-tasks/dynamic_graph_bridge/master.svg)](https://results.pre-commit.ci/latest/github/stack-of-tasks/dynamic_graph_bridge)
77

88
This ROS package binds together the ROS framework with the
99
dynamic-graph real-time control architecture.

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[tool.black]
2+
exclude = "cmake"

setup.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[flake8]
2+
exclude = cmake
3+
max-line-length = 88
4+
extend-ignore = E203

0 commit comments

Comments
 (0)