File tree 3 files changed +7
-7
lines changed 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ The valid options are:
135
135
* Use ` -G ` and the name of a generator to use something different. `cmake
136
136
--help` lists the generators available.
137
137
- On Unix, setting ` CMAKE_GENERATER=Ninja ` in your environment will give
138
- you automatic mulithreading on all your CMake projects!
138
+ you automatic multithreading on all your CMake projects!
139
139
* Open the ` CMakeLists.txt ` with QtCreator to generate for that IDE.
140
140
* You can use ` -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ` to generate the ` .json ` file
141
141
that some tools expect.
Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ repos:
32
32
33
33
# Black, the code formatter, natively supports pre-commit
34
34
- repo : https://github.com/psf/black-pre-commit-mirror
35
- rev : " 23.7.0 " # Keep in sync with blacken-docs
35
+ rev : " 23.9.1 " # Keep in sync with blacken-docs
36
36
hooks :
37
37
- id : black
38
38
39
39
# Ruff, the Python auto-correcting linter written in Rust
40
40
- repo : https://github.com/astral-sh/ruff-pre-commit
41
- rev : v0.0.287
41
+ rev : v0.0.292
42
42
hooks :
43
43
- id : ruff
44
44
args : ["--fix", "--show-fixes"]
@@ -124,15 +124,15 @@ repos:
124
124
# Use tools/codespell_ignore_lines_from_errors.py
125
125
# to rebuild .codespell-ignore-lines
126
126
- repo : https://github.com/codespell-project/codespell
127
- rev : " v2.2.5 "
127
+ rev : " v2.2.6 "
128
128
hooks :
129
129
- id : codespell
130
130
exclude : " .supp$"
131
131
args : ["-x.codespell-ignore-lines", "-Lccompiler"]
132
132
133
133
# Check for common shell mistakes
134
134
- repo : https://github.com/shellcheck-py/shellcheck-py
135
- rev : " v0.9.0.5 "
135
+ rev : " v0.9.0.6 "
136
136
hooks :
137
137
- id : shellcheck
138
138
@@ -147,7 +147,7 @@ repos:
147
147
148
148
# PyLint has native support - not always usable, but works for us
149
149
- repo : https://github.com/PyCQA/pylint
150
- rev : " v3.0.0a7 "
150
+ rev : " v3.0.0 "
151
151
hooks :
152
152
- id : pylint
153
153
files : ^pybind11
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ constexpr bool is_alias(void *) {
65
65
}
66
66
67
67
// Constructs and returns a new object; if the given arguments don't map to a constructor, we fall
68
- // back to brace aggregate initiailization so that for aggregate initialization can be used with
68
+ // back to brace aggregate initialization so that for aggregate initialization can be used with
69
69
// py::init, e.g. `py::init<int, int>` to initialize a `struct T { int a; int b; }`. For
70
70
// non-aggregate types, we need to use an ordinary T(...) constructor (invoking as `T{...}` usually
71
71
// works, but will not do the expected thing when `T` has an `initializer_list<T>` constructor).
You can’t perform that action at this time.
0 commit comments