Skip to content

Commit 8319f34

Browse files
committed
Fix config
1 parent 050c7dc commit 8319f34

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.5.0
3+
rev: 'v4.5.0'
44
hooks:
55
- id: check-case-conflict
66
- id: check-symlinks
@@ -15,25 +15,25 @@ repos:
1515
args:
1616
- --markdown-linebreak-ext=md
1717
- repo: https://github.com/codespell-project/codespell
18-
rev: v2.2.4
18+
rev: 'v2.2.4'
1919
hooks:
2020
- id: codespell
2121
- repo: https://github.com/pre-commit/mirrors-clang-format
22-
rev: v15.0.7
22+
rev: 'v15.0.7'
2323
hooks:
2424
- id: clang-format
2525
types_or:
2626
- c
2727
- c++
2828
- repo: https://github.com/psf/black-pre-commit-mirror
29-
rev: 22.10.0
29+
rev: '22.10.0'
3030
hooks:
3131
- id: black
3232
language_version: python3.8
3333
args:
3434
- --line-length=120 #From the arduino code style. Add as argument rather than creating a new config file.
3535
- repo: https://github.com/PyCQA/flake8
36-
rev: 7.0.0
36+
rev: '7.0.0'
3737
hooks:
3838
- id: flake8
3939
types_or:
@@ -43,13 +43,13 @@ repos:
4343
- flake8-comprehensions
4444
- flake8-simplify
4545
- repo: https://github.com/pre-commit/mirrors-prettier
46-
rev: v3.1.0
46+
rev: 'v3.1.0'
4747
hooks:
4848
- id: prettier
4949
types_or:
5050
- yaml
5151
- repo: https://github.com/adrienverge/yamllint
52-
rev: v1.33.0
52+
rev: 'v1.33.0'
5353
hooks:
5454
- id: yamllint
5555
types_or:

.yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ yaml-files:
7272

7373
ignore: |
7474
/.git/
75-
.clang-format
75+
/.clang-format
7676
__pycache__/

0 commit comments

Comments
 (0)