Skip to content

Commit af366a9

Browse files
committed
chore: update pre-commit versions to latest
1 parent 144f027 commit af366a9

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
repos:
1616
# Standard hooks
1717
- repo: https://github.com/pre-commit/pre-commit-hooks
18-
rev: v4.3.0
18+
rev: v6.0.0
1919
hooks:
2020
- id: check-added-large-files
2121
- id: check-ast
@@ -32,13 +32,13 @@ repos:
3232

3333
# Python hooks
3434
- repo: https://github.com/PyCQA/flake8
35-
rev: 6.0.0
35+
rev: 7.3.0
3636
hooks:
3737
- id: flake8
3838

3939
# CPP hooks
4040
- repo: https://github.com/pre-commit/mirrors-clang-format
41-
rev: 'v14.0.6'
41+
rev: 'v21.1.5'
4242
hooks:
4343
- id: clang-format
4444

ulog_cpp/utils.hpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ template <typename T>
4848
struct is_vector : std::false_type { // NOLINT(*-identifier-naming)
4949
};
5050
template <typename T>
51-
struct is_vector<std::vector<T>> : std::true_type {
52-
};
51+
struct is_vector<std::vector<T>> : std::true_type {};
5352

5453
/**
5554
* SFINAE helper to check if a type is a string

0 commit comments

Comments
 (0)