Skip to content

Commit 868fdc7

Browse files
committed
update tools & badges
1 parent 7d515df commit 868fdc7

File tree

5 files changed

+44
-9
lines changed

5 files changed

+44
-9
lines changed

.clang-format

Lines changed: 0 additions & 4 deletions
This file was deleted.

.pre-commit-config.yaml

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

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
sot-core
2-
========
1+
# sot-core
32

43
[![License](https://img.shields.io/badge/License-BSD%202--Clause-green.svg)](https://opensource.org/licenses/BSD-2-Clause)
54
[![Pipeline status](https://gitlab.laas.fr/stack-of-tasks/sot-core/badges/master/pipeline.svg)](https://gitlab.laas.fr/stack-of-tasks/sot-core/commits/master)
6-
[![Coverage report](https://gitlab.laas.fr/stack-of-tasks/sot-core/badges/master/coverage.svg?job=doc-coverage)](http://gepettoweb.laas.fr/doc/stack-of-tasks/sot-core/master/coverage/)
5+
[![Coverage report](https://gitlab.laas.fr/stack-of-tasks/sot-core/badges/master/coverage.svg?job=doc-coverage)](https://gepettoweb.laas.fr/doc/stack-of-tasks/sot-core/master/coverage/)
6+
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
7+
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/stack-of-tasks/sot-core/master.svg)](https://results.pre-commit.ci/latest/github/stack-of-tasks/sot-core)
8+
79

810
This software provides a set of dynamic graph plug-ins which can be
911
used to define and solve hierarchical tasks.
1012

1113

12-
Setup
13-
-----
14+
## Setup
1415

1516
To compile this package, it is recommended to create a separate build
1617
directory:

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+
ignore = E226, E704, E24, E121, W504, E126, E123, W503, E203

0 commit comments

Comments
 (0)