Skip to content

Implement inline ignores#2400

Merged
DimitriPapadopoulos merged 16 commits intocodespell-project:masterfrom
kaste:implement-inline-ignores
Mar 10, 2024
Merged

Implement inline ignores#2400
DimitriPapadopoulos merged 16 commits intocodespell-project:masterfrom
kaste:implement-inline-ignores

Conversation

@kaste
Copy link
Copy Markdown
Contributor

@kaste kaste commented Jul 11, 2022

Fixes #1212

Following @rob-miller's suggestion implement inline ignore hints.

E.g.

crate  // codespell:ignore crate
abandonned abondon abilty  # codespell:ignore abondon,abilty
abandonned abondon abilty  # codespell:ignore  # to ignore all

@kaste kaste mentioned this pull request Jul 11, 2022
@luzpaz luzpaz requested a review from peternewman July 11, 2022 15:19
Copy link
Copy Markdown
Collaborator

@peternewman peternewman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some of the tests are failing here due to files in ./.pytest_cache so you'll need to add that in our private GitHub workflow.

A few comments too.

Personally I'm still not entirely convinced given the same issue as other ignores, there really needs to be a way to escape it.

Comment thread codespell_lib/_codespell.py
Comment thread codespell_lib/tests/test_basic.py Outdated
Comment thread codespell_lib/_codespell.py Outdated
uri_regex_def = (u"(\\b(?:https?|[ts]?ftp|file|git|smb)://[^\\s]+(?=$|\\s)|"
u"\\b[\\w.%+-]+@[\\w.-]+\\b)")
inline_ignore_regex = re.compile(
r"[^\w\s] codespell:ignore(?:(?:\s|$)([\w,]*))")
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Won't this also match, and hence ignore the typos in this:
You could also use the line based ignor ( codespell:ignore ) to ignor the whole line.

Which I'd call a false positive!

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Questionable what the example sentence you give here should mean. False positives are always a problem but then it looks like you constructed the example to produce the false positive. In other words your sentence is probably not something a user would type. (In fact, you probably can only write down codespell:ignore in technical documentation about codespell itself.)

For prose, "inline-disabling" is probably not what you want anyway because there are no comments in prose. A user would read the technical ignore statement in any case. (There is also no syntax highlighting in the editor which would gray out our ignore statements.)

Usually, such ignore statements are the last thing on a line except you have other comments on the same line, so maybe we can change the behavior and only let ... | codespell:ignore | ... match t.i. on the left an right we find the same character, thus the ( ... ) you gave would not match. I'll push an update here.

Actually a simple ... (codespell:ignore) ... would be very nice syntax for prose and I wonder if a simpler r"[^\w\s]\s?codespell:ignore\b(\s+(?P<words>[\w,]*))?" would just work or "be enough" in practice.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For the record:

diff --git a/codespell_lib/_codespell.py b/codespell_lib/_codespell.py
index 6ffd629c..26b27a0e 100644
--- a/codespell_lib/_codespell.py
+++ b/codespell_lib/_codespell.py
@@ -33,7 +33,7 @@ word_regex_def = u"[\\w\\-'’`]+"
 uri_regex_def = (u"(\\b(?:https?|[ts]?ftp|file|git|smb)://[^\\s]+(?=$|\\s)|"
                  u"\\b[\\w.%+-]+@[\\w.-]+\\b)")
 inline_ignore_regex = re.compile(
-    r"([^\w\s]) codespell:ignore(\s(?P<words>[\w,]*))?(\s+\1|$)")
+    r"[^\w\s]\s?codespell:ignore\b(\s+(?P<words>[\w,]*))?")
 encodings = ('utf-8', 'iso-8859-1')
 USAGE = """
 \t%prog [OPTIONS] [file1 file2 ... fileN]
diff --git a/codespell_lib/tests/test_basic.py b/codespell_lib/tests/test_basic.py
index a67115c6..1ec93024 100644
--- a/codespell_lib/tests/test_basic.py
+++ b/codespell_lib/tests/test_basic.py
@@ -247,12 +247,11 @@ def test_ignore_word_list(tmpdir, capsys):
     ('abandonned abondon abilty  # codespell:ignore\r\n', 0),
     ('abandonned abondon abilty  # codespell:ignore  # noqa: E501\n', 0),
     ('abandonned abondon abilty  # codespell:ignore # noqa: E501\n', 0),
+    ('abandonned abondon abilty  # codespell:ignore# noqa: E501\n', 0),
+    ('abandonned abondon abilty  # codespell:ignore, noqa: E501\n', 0),
+    ('abandonned abondon abilty  #codespell:ignore\n', 0),
     # ignore these for safety
-    ('abandonned abondon abilty  # codespell:ignore# noqa: E501\n', 3),
-    ('abandonned abondon abilty  # codespell:ignore, noqa: E501\n', 3),
-    ('abandonned abondon abilty  # codespell:ignore/noqa: E501\n', 3),
     ('abandonned abondon abilty  # codespell:ignorenoqa: E501\n', 3),
-    ('abandonned abondon abilty  #codespell:ignore\n', 3),
     ('abandonned abondon abilty  codespell:ignore\n', 3),
     ('abandonned abondon abilty codespell:ignore\n', 3),
     # showcase different comment markers
@@ -260,8 +259,11 @@ def test_ignore_word_list(tmpdir, capsys):
     ('abandonned abondon abilty " codespell:ignore\n', 0),
     ('abandonned abondon abilty ;; codespell:ignore\n', 0),
     ('abandonned abondon abilty /* codespell:ignore */\n', 0),
-    # avoid false positive
-    ('You could also use line based igore ( codespell:ignore ) to igore ', 2),
+    # prose examples
+    ('You could also use line based igore ( codespell:ignore ) to igore ', 0),
+    ('You could also use line based igore (codespell:ignore) to igore ', 0),
+    ('You could also use line based igore (codespell:ignore igore) to igore ', 0),
+    ('You could also use line based igore (codespell:ignore igare) to igore ', 2),
 ])

isn't that bad either as roughly \bcodespell:ignore\b is already a very special and rare token.

there really needs to be a way to escape it.

Can we escape in prose writing?

Comment thread codespell_lib/tests/test_basic.py Outdated
@kaste kaste force-pushed the implement-inline-ignores branch from 56fde13 to c42e62d Compare July 22, 2022 23:07
@kaste
Copy link
Copy Markdown
Contributor Author

kaste commented Jul 22, 2022

I just pushed a more relaxed version as - after a week - I found this more and more nice for prose. I push this so then I don't have a dirty workdir on my computer, and we can easily see which tests pass now, and with git we don't loose the previous version anyway.

Since the verbatim codespell:ignore is already seldom to find in the wild a lax version can be just good enough.

I get the feeling that you don't want to decide on this one; and honestly I just took the most liked issue to give it a try and I did not loose a deep thought as it's not my idea I implemented but ... I think I like it and it is a good simple implementation idea. It is naive but likable.

Comment thread codespell_lib/_codespell.py Outdated
Comment thread codespell_lib/_codespell.py
@yarikoptic
Copy link
Copy Markdown
Contributor

is there a way to add more than one ❤️ to the description of this PR? ;-)

@victor-kostyuk
Copy link
Copy Markdown

What's holding up this PR? Without inline ignores, codespell is much less useful.

@kaste
Copy link
Copy Markdown
Contributor Author

kaste commented Feb 2, 2023

The problem is having false positives with this approach as I understand the maintainer(s). I don't know if we could avoid them. I do think they are not very likely and then not very harmful.

@victor-kostyuk
Copy link
Copy Markdown

@kaste : could you accept @akx 's suggested changes?

@peternewman : any issues you consider serious enough to block this PR?

@DimitriPapadopoulos
Copy link
Copy Markdown
Collaborator

Need to rebase to resolve conflicts too.

@kaste
Copy link
Copy Markdown
Contributor Author

kaste commented Feb 5, 2023

I do not implement cspells ignore functionality, https://cspell.org/configuration/document-settings/#ignore I also replied over there #1212 (comment) that I do not. This is only ignore-word-on-this-line. cspell doesn't have this functionality. They have ignore-for-this-file.

Having multiple prefixes, spellings does not mitigate false positives either, on contraire.

@victor-kostyuk
Copy link
Copy Markdown

I do not implement cspells ignore functionality, cspell.org/configuration/document-settings/#ignore I also replied over there #1212 (comment) that I do not. This is only ignore-word-on-this-line. cspell doesn't have this functionality. They have ignore-for-this-file.

Having multiple prefixes, spellings does not mitigate false positives either, on contraire.

cspell has ignore line: // cspell:disable-line. Adding it is unlikely to produce false positives, for the same reason that this is unlikely to produce false positives. Also, @akx second comment was not about cspell.

@kaste kaste force-pushed the implement-inline-ignores branch from c42e62d to 2357811 Compare February 6, 2023 09:59
@kaste kaste requested a review from larsoner as a code owner February 6, 2023 09:59
@kaste
Copy link
Copy Markdown
Contributor Author

kaste commented Feb 6, 2023

He? I don't implement the :disable-line directive but the :ignore one. cspell:ignore has a different meaning than the codespell:ignore I tried here.

@neiljp
Copy link
Copy Markdown

neiljp commented Feb 22, 2023

I was just about to open an issue until finally finding #1212, and then this PR!
Thanks for looking at this @kaste 👍

This is a great exploratory PR; perhaps slimming it down could help find consensus for merging?

  • Would looking up an appropriate comment character based on the file type help with some of the false-positive concerns, since the regex could then be more specific? Initially one could only enable this option if users provide a mapping from extensions to characters
  • I suspect many would be initially satisfied with such comments on end of line only
  • While excluding specific words on a line would be great, simply marking a line to be ignored is a great feature on its own; the word-specific feature could be added later

I think there's plenty of scope for extending this later:

  • the words on a line feature currently here
  • customizing the tool prefix used, eg. to allow codespell: , and/or cspell:
  • supporting auto file type detection (optionally, to avoid a required magic dependency?)
  • the line-below features in cspell? (comment on different line to 'code')
  • perhaps a similar 'block below' (paragraph, function, curly-brace block?)
  • turning the checker on/off on lines in a file, like isort offers
  • excluding a file this way, as a source-equivalent version of the existing option
  • excluding words in a file this way
  • possibly support aliases for documents marked up for other tools? (not the tool prefix, but also actions)

Copy link
Copy Markdown
Collaborator

@DimitriPapadopoulos DimitriPapadopoulos left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I could approve when it passes tests.

Perhaps change extra_words_to_ignore to words_to_ignore_in_line? That's only a suggestion, you don't have to apply it if you don't agree.

A few more comments:

  • Perhaps ignore is a bad keyword choice, because it is already taken in cspell and its meaning is different. This will be a problem if we want to share other in document settings with cspell later on. Could be ignore-words instead, but I reckon that might be verbose and wouldn't work well without word arguments – but then disable-line without word arguments could ba a good start and would be compatible with cspell.
  • Documentation would be required to merge this.

@DimitriPapadopoulos
Copy link
Copy Markdown
Collaborator

DimitriPapadopoulos commented Feb 22, 2023

  • Would looking up an appropriate comment character based on the file type help with some of the false-positive concerns, since the regex could then be more specific? Initially one could only enable this option if users provide a mapping from extensions to characters

We currently don't have a “file type”, adding one would probably have the inverse effect of slimming down.

  • I suspect many would be initially satisfied with such comments on end of line only

In most cases, but what if you want to add a # noqa too?

  • While excluding specific words on a line would be great, simply marking a line to be ignored is a great feature on its own; the word-specific feature could be added later

Yes, in this case ignore might be changed to disable-line for consistency with cspell.

@DimitriPapadopoulos DimitriPapadopoulos dismissed their stale review February 22, 2023 07:20

Ooops, wanted to add comments first.

@kaste
Copy link
Copy Markdown
Contributor Author

kaste commented Feb 22, 2023

At least I'm green 😄

image

finally.

nijel added a commit to nijel/weblate that referenced this pull request Apr 18, 2024
Once codespell-project/codespell#2400 is
releases we should annotate all remaining strings and include codespell
in pre-commit.
nijel added a commit to nijel/weblate that referenced this pull request Apr 18, 2024
Once codespell-project/codespell#2400 is
releases we should annotate all remaining strings and include codespell
in pre-commit.
nijel added a commit to WeblateOrg/weblate that referenced this pull request Apr 18, 2024
Once codespell-project/codespell#2400 is
releases we should annotate all remaining strings and include codespell
in pre-commit.
@kaste
Copy link
Copy Markdown
Contributor Author

kaste commented May 23, 2024

Haha, it's out. 🚢 ⛵

@kaste kaste deleted the implement-inline-ignores branch May 23, 2024 22:59
renovate Bot referenced this pull request in allenporter/flux-local May 24, 2024
….3.0 (#690)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[codespell-project/codespell](https://togithub.com/codespell-project/codespell)
| repository | minor | `v2.2.6` -> `v2.3.0` |

Note: The `pre-commit` manager in Renovate is not supported by the
`pre-commit` maintainers or community. Please do not report any problems
there, instead [create a Discussion in the Renovate
repository](https://togithub.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>codespell-project/codespell
(codespell-project/codespell)</summary>

###
[`v2.3.0`](https://togithub.com/codespell-project/codespell/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/codespell-project/codespell/compare/v2.2.6...v2.3.0)

#### What's Changed

- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3115](https://togithub.com/codespell-project/codespell/pull/3115)
- Add schematrion->schematron by
[@&#8203;AirQuick](https://togithub.com/AirQuick) in
[https://github.com/codespell-project/codespell/pull/3116](https://togithub.com/codespell-project/codespell/pull/3116)
- Add explicit Python 3.12 support by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3121](https://togithub.com/codespell-project/codespell/pull/3121)
- Add miscellaneous typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3117](https://togithub.com/codespell-project/codespell/pull/3117)
- fix: aesthetic(s) should be kept as is by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- Add more labour\* variants by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3128](https://togithub.com/codespell-project/codespell/pull/3128)
- Add additional spelling corrections for prior and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3135](https://togithub.com/codespell-project/codespell/pull/3135)
- Fix `no-commit-to-branch` Pre-Commit check by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3130](https://togithub.com/codespell-project/codespell/pull/3130)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3131](https://togithub.com/codespell-project/codespell/pull/3131)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3155](https://togithub.com/codespell-project/codespell/pull/3155)
- Return exit status in **main**.py by
[@&#8203;szepeviktor](https://togithub.com/szepeviktor) in
[https://github.com/codespell-project/codespell/pull/3157](https://togithub.com/codespell-project/codespell/pull/3157)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3158](https://togithub.com/codespell-project/codespell/pull/3158)
- Added new word by
[@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- `dictionary.txt` additions by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3149](https://togithub.com/codespell-project/codespell/pull/3149)
- Add Gelma's typos that start with "a" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3150](https://togithub.com/codespell-project/codespell/pull/3150)
- Add Gelma's typos from "b" to "cl" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3163](https://togithub.com/codespell-project/codespell/pull/3163)
- Add some academies typos by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3173](https://togithub.com/codespell-project/codespell/pull/3173)
- Add Gelma's typos from "co" to "cy" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3167](https://togithub.com/codespell-project/codespell/pull/3167)
- Add Gelma's typos that start with "d" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3168](https://togithub.com/codespell-project/codespell/pull/3168)
- Refactor code using `encodings` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3172](https://togithub.com/codespell-project/codespell/pull/3172)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3176](https://togithub.com/codespell-project/codespell/pull/3176)
- Add Gelma's typos that start with "e" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3174](https://togithub.com/codespell-project/codespell/pull/3174)
- Add Gelma's typos from "f" to "h" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3175](https://togithub.com/codespell-project/codespell/pull/3175)
- Add alwats->always correction. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3178](https://togithub.com/codespell-project/codespell/pull/3178)
- Add obsloete->obsolete and friend by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3019](https://togithub.com/codespell-project/codespell/pull/3019)
- Add entries to rare dictionary by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3179](https://togithub.com/codespell-project/codespell/pull/3179)
- Add Gelma's typos that start with "i" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3177](https://togithub.com/codespell-project/codespell/pull/3177)
- diagional -> diagonal by
[@&#8203;tkoyama010](https://togithub.com/tkoyama010) in
[https://github.com/codespell-project/codespell/pull/3183](https://togithub.com/codespell-project/codespell/pull/3183)
- Add Gelma's typos from "j" to "m" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3180](https://togithub.com/codespell-project/codespell/pull/3180)
- Add Gelma's typos from "n" to "o" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3182](https://togithub.com/codespell-project/codespell/pull/3182)
- Add corrections for vulnerbailit(y|ies)->vulnerabilit(y|ies). by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3185](https://togithub.com/codespell-project/codespell/pull/3185)
- Add Gelma's typos that start with "p" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3184](https://togithub.com/codespell-project/codespell/pull/3184)
- Add Gelma's typos from "q" to "r" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3186](https://togithub.com/codespell-project/codespell/pull/3186)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3193](https://togithub.com/codespell-project/codespell/pull/3193)
- openign->opening by [@&#8203;claydugo](https://togithub.com/claydugo)
in
[https://github.com/codespell-project/codespell/pull/3194](https://togithub.com/codespell-project/codespell/pull/3194)
- Add Gelma's typos that start with "s" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3187](https://togithub.com/codespell-project/codespell/pull/3187)
- Add spelling corrections for evaluate by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3195](https://togithub.com/codespell-project/codespell/pull/3195)
- Add Gelma's typos from "t" to "z" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3188](https://togithub.com/codespell-project/codespell/pull/3188)
- Dict update by [@&#8203;macpijan](https://togithub.com/macpijan) in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- Improve existing suggestions by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3200](https://togithub.com/codespell-project/codespell/pull/3200)
- Add a timeout to jobs that may benefit from it by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3199](https://togithub.com/codespell-project/codespell/pull/3199)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3201](https://togithub.com/codespell-project/codespell/pull/3201)
- Unify multiple identities of luzpuz and Dimitri by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3205](https://togithub.com/codespell-project/codespell/pull/3205)
- Ignore personal names Damon and Manuel by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3214](https://togithub.com/codespell-project/codespell/pull/3214)
- Ignore ill-formed INI files instead of crashing by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3213](https://togithub.com/codespell-project/codespell/pull/3213)
- don't show stacktrace from KeyboardInterrupt
[#&#8203;3217](https://togithub.com/codespell-project/codespell/issues/3217)
by [@&#8203;jcubic](https://togithub.com/jcubic) in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- Adding 'hareware' to spelling corrections. by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- Add typos for knownledge->knowledge, analyzis->analysis and
compialtion->compilation by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3222](https://togithub.com/codespell-project/codespell/pull/3222)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3228](https://togithub.com/codespell-project/codespell/pull/3228)
- Add --stdin-single-line option by
[@&#8203;Jendker](https://togithub.com/Jendker) in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- Add spelling corrections for parameters by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3230](https://togithub.com/codespell-project/codespell/pull/3230)
- Ignore line endings in exclude-file by
[@&#8203;Jackenmen](https://togithub.com/Jackenmen) in
[https://github.com/codespell-project/codespell/pull/1889](https://togithub.com/codespell-project/codespell/pull/1889)
- Add typo offsers by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3232](https://togithub.com/codespell-project/codespell/pull/3232)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3235](https://togithub.com/codespell-project/codespell/pull/3235)
- Process files in sorted rather than arbitrary order by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3234](https://togithub.com/codespell-project/codespell/pull/3234)
- Add refinement to 'remore' typo by
[@&#8203;luzpaz](https://togithub.com/luzpaz) in
[https://github.com/codespell-project/codespell/pull/3236](https://togithub.com/codespell-project/codespell/pull/3236)
- chore(license): update to use spdx id by
[@&#8203;chenrui333](https://togithub.com/chenrui333) in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- Materials science related corrections by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3237](https://togithub.com/codespell-project/codespell/pull/3237)
- Add spelling corrections for vulnerability and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3239](https://togithub.com/codespell-project/codespell/pull/3239)
- Bump actions/setup-python from 4 to 5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3240](https://togithub.com/codespell-project/codespell/pull/3240)
- add velcoity -> velocity by
[@&#8203;zingale](https://togithub.com/zingale) in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- black → ruff format by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3242](https://togithub.com/codespell-project/codespell/pull/3242)
- ot is a typo also for it, which i is close to o by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3247](https://togithub.com/codespell-project/codespell/pull/3247)
- Apply a selection of refurb rules by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3244](https://togithub.com/codespell-project/codespell/pull/3244)
- Get rid of autoflake by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3250](https://togithub.com/codespell-project/codespell/pull/3250)
- Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3253](https://togithub.com/codespell-project/codespell/pull/3253)
- Bump actions/download-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3254](https://togithub.com/codespell-project/codespell/pull/3254)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3257](https://togithub.com/codespell-project/codespell/pull/3257)
- Add spelling correction for miltiple and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3255](https://togithub.com/codespell-project/codespell/pull/3255)
- Collection of typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3251](https://togithub.com/codespell-project/codespell/pull/3251)
- test: remove warning when aspell is not installed by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- Add carrets->carets by [@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3263](https://togithub.com/codespell-project/codespell/pull/3263)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3264](https://togithub.com/codespell-project/codespell/pull/3264)
- Add support for ANSI colors on Windows by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3259](https://togithub.com/codespell-project/codespell/pull/3259)
- Add prettier to pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3268](https://togithub.com/codespell-project/codespell/pull/3268)
- Apply Repo-Review suggestions by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3265](https://togithub.com/codespell-project/codespell/pull/3265)
- dictionary: pathes can be patches by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3273](https://togithub.com/codespell-project/codespell/pull/3273)
- fix: typos in comments by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- doc: Specify .codespellrc is INI formatted by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3271](https://togithub.com/codespell-project/codespell/pull/3271)
- Add sanetize->sanitize by
[@&#8203;sshane](https://togithub.com/sshane) in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- Case ignore by [@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3272](https://togithub.com/codespell-project/codespell/pull/3272)
- Fixed
[#&#8203;3278](https://togithub.com/codespell-project/codespell/issues/3278)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- dictionnary: persan can be persian. by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3282](https://togithub.com/codespell-project/codespell/pull/3282)
- Add validaiton->validation, valuation by
[@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3281](https://togithub.com/codespell-project/codespell/pull/3281)
- Consistent title case capitalisation by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3286](https://togithub.com/codespell-project/codespell/pull/3286)
- Updated dictionary for
[#&#8203;2411](https://togithub.com/codespell-project/codespell/issues/2411)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3280](https://togithub.com/codespell-project/codespell/pull/3280)
- dict: falt can be fault or flat by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3289](https://togithub.com/codespell-project/codespell/pull/3289)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3291](https://togithub.com/codespell-project/codespell/pull/3291)
- Add acquistion->acquisition by
[@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- Adding fixes for recommond and recommonded by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3292](https://togithub.com/codespell-project/codespell/pull/3292)
- Add tox.ini file by [@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3269](https://togithub.com/codespell-project/codespell/pull/3269)
- Fixed
[#&#8203;3297](https://togithub.com/codespell-project/codespell/issues/3297)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3298](https://togithub.com/codespell-project/codespell/pull/3298)
- Enable lists in TOML config file by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3294](https://togithub.com/codespell-project/codespell/pull/3294)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3162](https://togithub.com/codespell-project/codespell/pull/3162)
- Fixed
[#&#8203;3301](https://togithub.com/codespell-project/codespell/issues/3301)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3302](https://togithub.com/codespell-project/codespell/pull/3302)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3303](https://togithub.com/codespell-project/codespell/pull/3303)
- Materials science related corrections 2 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3295](https://togithub.com/codespell-project/codespell/pull/3295)
- Add spelling corrections for sphere by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3304](https://togithub.com/codespell-project/codespell/pull/3304)
- Makes config for "count" more clear as a boolean by
[@&#8203;amarvin](https://togithub.com/amarvin) in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- quanitization -> quantization by
[@&#8203;claydugo](https://togithub.com/claydugo) in
[https://github.com/codespell-project/codespell/pull/3308](https://togithub.com/codespell-project/codespell/pull/3308)
- instroment->instrument by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3309](https://togithub.com/codespell-project/codespell/pull/3309)
- Add updadated->updated and uneared->unearned by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3310](https://togithub.com/codespell-project/codespell/pull/3310)
- initiase -> initialise by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3343](https://togithub.com/codespell-project/codespell/pull/3343)
- Adding correction for furance->furnace by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3347](https://togithub.com/codespell-project/codespell/pull/3347)
- Bump codecov/codecov-action from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3348](https://togithub.com/codespell-project/codespell/pull/3348)
- dict: disagreement by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3351](https://togithub.com/codespell-project/codespell/pull/3351)
- dict: False/true typos by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3350](https://togithub.com/codespell-project/codespell/pull/3350)
- sampe->sample by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3354](https://togithub.com/codespell-project/codespell/pull/3354)
- Multiple spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3349](https://togithub.com/codespell-project/codespell/pull/3349)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3352](https://togithub.com/codespell-project/codespell/pull/3352)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3357](https://togithub.com/codespell-project/codespell/pull/3357)
- Fix "dubious ownership" error in dev containers by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3361](https://togithub.com/codespell-project/codespell/pull/3361)
- Assorted mispellings by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3360](https://togithub.com/codespell-project/codespell/pull/3360)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3364](https://togithub.com/codespell-project/codespell/pull/3364)
- Add metadataa typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3368](https://togithub.com/codespell-project/codespell/pull/3368)
- Add corrections for all \*in->\*ing words starting with "A" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3336](https://togithub.com/codespell-project/codespell/pull/3336)
- Add corrections for all \*in->\*ing words starting with "B" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3312](https://togithub.com/codespell-project/codespell/pull/3312)
- Add corrections for all \*in->\*ing words starting with "C" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3314](https://togithub.com/codespell-project/codespell/pull/3314)
- editible->editable by
[@&#8203;skshetry](https://togithub.com/skshetry) in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- Add corrections for all \*in->\*ing words starting with "D" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3319](https://togithub.com/codespell-project/codespell/pull/3319)
- Add corrections for all \*in->\*ing words starting with "E" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3318](https://togithub.com/codespell-project/codespell/pull/3318)
- Add corrections for all \*in->\*ing words starting with "F" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3330](https://togithub.com/codespell-project/codespell/pull/3330)
- Add correction for spoofing and spoofed. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3370](https://togithub.com/codespell-project/codespell/pull/3370)
- Add reliabe->reliable by
[@&#8203;adamscott](https://togithub.com/adamscott) in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- Add corrections for all \*in->\*ing words starting with "G" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3325](https://togithub.com/codespell-project/codespell/pull/3325)
- Add corrections for all \*in->\*ing words starting with "H" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3315](https://togithub.com/codespell-project/codespell/pull/3315)
- Add corrections for all \*in->\*ing words starting with "I" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3329](https://togithub.com/codespell-project/codespell/pull/3329)
- Add corrections for all \*in->\*ing words starting with "J" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3331](https://togithub.com/codespell-project/codespell/pull/3331)
- Add corrections for all \*in->\*ing words starting with "K" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3332](https://togithub.com/codespell-project/codespell/pull/3332)
- Add corrections for all \*in->\*ing words starting with "L" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3326](https://togithub.com/codespell-project/codespell/pull/3326)
- Add corrections for all \*in->\*ing words starting with "M" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3317](https://togithub.com/codespell-project/codespell/pull/3317)
- Add corrections for all \*in->\*ing words starting with "N" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3320](https://togithub.com/codespell-project/codespell/pull/3320)
- Add corrections for all \*in->\*ing words starting with "O" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3313](https://togithub.com/codespell-project/codespell/pull/3313)
- Move focusin to code by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3373](https://togithub.com/codespell-project/codespell/pull/3373)
- Add filaname->filename by
[@&#8203;cjwatson](https://togithub.com/cjwatson) in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- Add corrections for all \*in->\*ing words starting with "R" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3324](https://togithub.com/codespell-project/codespell/pull/3324)
- Add corrections for all \*in->\*ing words starting with "S" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3316](https://togithub.com/codespell-project/codespell/pull/3316)
- Add corrections for all \*in->\*ing words starting with "P" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3322](https://togithub.com/codespell-project/codespell/pull/3322)
- Add corrections for all \*in->\*ing words starting with "Q" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3333](https://togithub.com/codespell-project/codespell/pull/3333)
- Add corrections for all \*in->\*ing words starting with "T" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3328](https://togithub.com/codespell-project/codespell/pull/3328)
- Add corrections for all \*in->\*ing words starting with "U" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3321](https://togithub.com/codespell-project/codespell/pull/3321)
- Add corrections for all \*in->\*ing words starting with "V" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3327](https://togithub.com/codespell-project/codespell/pull/3327)
- Add corrections for all \*in->\*ing words starting with "W" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3323](https://togithub.com/codespell-project/codespell/pull/3323)
- Add corrections for all \*in->\*ing words starting with "Y" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3334](https://togithub.com/codespell-project/codespell/pull/3334)
- Add corrections for all \*in->\*ing words starting with "Z" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3335](https://togithub.com/codespell-project/codespell/pull/3335)
- Add 'quotted->quoted' by
[@&#8203;sirosen](https://togithub.com/sirosen) in
[https://github.com/codespell-project/codespell/pull/3374](https://togithub.com/codespell-project/codespell/pull/3374)
- Remove reoccurrence from the dictionary.txt -- LGTM and popular word
by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3378](https://togithub.com/codespell-project/codespell/pull/3378)
- Add typos for expration(s) by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3377](https://togithub.com/codespell-project/codespell/pull/3377)
- Implement inline ignores by
[@&#8203;kaste](https://togithub.com/kaste) in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- Add softwrae typo fix by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3383](https://togithub.com/codespell-project/codespell/pull/3383)
- Add spelling corrections for morphology by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3379](https://togithub.com/codespell-project/codespell/pull/3379)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3382](https://togithub.com/codespell-project/codespell/pull/3382)
- Several spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3386](https://togithub.com/codespell-project/codespell/pull/3386)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3389](https://togithub.com/codespell-project/codespell/pull/3389)
- Add 'repeatition->repetition' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3388](https://togithub.com/codespell-project/codespell/pull/3388)
- Add labael->label and variants by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3384](https://togithub.com/codespell-project/codespell/pull/3384)
- docs: add the documentation of the new inline ignore comments by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- Add reposiroty->repository by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3393](https://togithub.com/codespell-project/codespell/pull/3393)
- Adding communicationg->communicating by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3394](https://togithub.com/codespell-project/codespell/pull/3394)
- Add 'croporate->corporate', 'incroporate->incorporate' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3395](https://togithub.com/codespell-project/codespell/pull/3395)
- docs: indentation error by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3392](https://togithub.com/codespell-project/codespell/pull/3392)
- More typos from Wikipedia by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3363](https://togithub.com/codespell-project/codespell/pull/3363)
- Add compatiblility / configurated by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3161](https://togithub.com/codespell-project/codespell/pull/3161)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3398](https://togithub.com/codespell-project/codespell/pull/3398)
- Handle multiline options by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3400](https://togithub.com/codespell-project/codespell/pull/3400)
- docs: just `codespell:ignore` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3397](https://togithub.com/codespell-project/codespell/pull/3397)
- Add `aftewards` misspelling by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3403](https://togithub.com/codespell-project/codespell/pull/3403)
- Add correction for trasversal and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3405](https://togithub.com/codespell-project/codespell/pull/3405)
- A few mispellings for the dictionnary by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3404](https://togithub.com/codespell-project/codespell/pull/3404)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3406](https://togithub.com/codespell-project/codespell/pull/3406)
- Options that expect a file, should accept lists of files too by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/2767](https://togithub.com/codespell-project/codespell/pull/2767)
- Add spelling correction for specialiaze/specialiase and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3409](https://togithub.com/codespell-project/codespell/pull/3409)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3411](https://togithub.com/codespell-project/codespell/pull/3411)
- Add statestics typo (github has over 300 hits) by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3412](https://togithub.com/codespell-project/codespell/pull/3412)
- nueroimaging typo (13 hits on github) -- domain specific but no doubt
wrong! by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3413](https://togithub.com/codespell-project/codespell/pull/3413)
- Added minor typos by [@&#8203;matlupi](https://togithub.com/matlupi)
in
[https://github.com/codespell-project/codespell/pull/3410](https://togithub.com/codespell-project/codespell/pull/3410)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3415](https://togithub.com/codespell-project/codespell/pull/3415)
- Add netflify typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3417](https://togithub.com/codespell-project/codespell/pull/3417)
- insstance typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3418](https://togithub.com/codespell-project/codespell/pull/3418)
- mian->main by [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo)
in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3420](https://togithub.com/codespell-project/codespell/pull/3420)
- Add coverage files to `.gitignore` by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3422](https://togithub.com/codespell-project/codespell/pull/3422)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3423](https://togithub.com/codespell-project/codespell/pull/3423)
- Add `arragne->arrange` typo by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3421](https://togithub.com/codespell-project/codespell/pull/3421)
- Materials science-related corrections 3 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3424](https://togithub.com/codespell-project/codespell/pull/3424)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3428](https://togithub.com/codespell-project/codespell/pull/3428)

#### New Contributors

- [@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- [@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- [@&#8203;macpijan](https://togithub.com/macpijan) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- [@&#8203;hugovk](https://togithub.com/hugovk) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- [@&#8203;jcubic](https://togithub.com/jcubic) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- [@&#8203;barndawgie](https://togithub.com/barndawgie) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- [@&#8203;Jendker](https://togithub.com/Jendker) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- [@&#8203;chenrui333](https://togithub.com/chenrui333) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- [@&#8203;zingale](https://togithub.com/zingale) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- [@&#8203;perillo](https://togithub.com/perillo) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- [@&#8203;vEnhance](https://togithub.com/vEnhance) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- [@&#8203;sshane](https://togithub.com/sshane) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- [@&#8203;matlupi](https://togithub.com/matlupi) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- [@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- [@&#8203;amarvin](https://togithub.com/amarvin) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- [@&#8203;skshetry](https://togithub.com/skshetry) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- [@&#8203;adamscott](https://togithub.com/adamscott) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- [@&#8203;cjwatson](https://togithub.com/cjwatson) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- [@&#8203;kaste](https://togithub.com/kaste) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- [@&#8203;12rambau](https://togithub.com/12rambau) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)

**Full Changelog**:
codespell-project/codespell@v2.2.6...v2.3.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/allenporter/flux-local).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
allenporter referenced this pull request in allenporter/pyrainbird May 25, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[codespell-project/codespell](https://togithub.com/codespell-project/codespell)
| repository | minor | `v2.2.6` -> `v2.3.0` |

Note: The `pre-commit` manager in Renovate is not supported by the
`pre-commit` maintainers or community. Please do not report any problems
there, instead [create a Discussion in the Renovate
repository](https://togithub.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>codespell-project/codespell
(codespell-project/codespell)</summary>

###
[`v2.3.0`](https://togithub.com/codespell-project/codespell/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/codespell-project/codespell/compare/v2.2.6...v2.3.0)

#### What's Changed

- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3115](https://togithub.com/codespell-project/codespell/pull/3115)
- Add schematrion->schematron by
[@&#8203;AirQuick](https://togithub.com/AirQuick) in
[https://github.com/codespell-project/codespell/pull/3116](https://togithub.com/codespell-project/codespell/pull/3116)
- Add explicit Python 3.12 support by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3121](https://togithub.com/codespell-project/codespell/pull/3121)
- Add miscellaneous typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3117](https://togithub.com/codespell-project/codespell/pull/3117)
- fix: aesthetic(s) should be kept as is by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- Add more labour\* variants by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3128](https://togithub.com/codespell-project/codespell/pull/3128)
- Add additional spelling corrections for prior and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3135](https://togithub.com/codespell-project/codespell/pull/3135)
- Fix `no-commit-to-branch` Pre-Commit check by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3130](https://togithub.com/codespell-project/codespell/pull/3130)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3131](https://togithub.com/codespell-project/codespell/pull/3131)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3155](https://togithub.com/codespell-project/codespell/pull/3155)
- Return exit status in **main**.py by
[@&#8203;szepeviktor](https://togithub.com/szepeviktor) in
[https://github.com/codespell-project/codespell/pull/3157](https://togithub.com/codespell-project/codespell/pull/3157)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3158](https://togithub.com/codespell-project/codespell/pull/3158)
- Added new word by
[@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- `dictionary.txt` additions by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3149](https://togithub.com/codespell-project/codespell/pull/3149)
- Add Gelma's typos that start with "a" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3150](https://togithub.com/codespell-project/codespell/pull/3150)
- Add Gelma's typos from "b" to "cl" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3163](https://togithub.com/codespell-project/codespell/pull/3163)
- Add some academies typos by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3173](https://togithub.com/codespell-project/codespell/pull/3173)
- Add Gelma's typos from "co" to "cy" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3167](https://togithub.com/codespell-project/codespell/pull/3167)
- Add Gelma's typos that start with "d" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3168](https://togithub.com/codespell-project/codespell/pull/3168)
- Refactor code using `encodings` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3172](https://togithub.com/codespell-project/codespell/pull/3172)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3176](https://togithub.com/codespell-project/codespell/pull/3176)
- Add Gelma's typos that start with "e" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3174](https://togithub.com/codespell-project/codespell/pull/3174)
- Add Gelma's typos from "f" to "h" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3175](https://togithub.com/codespell-project/codespell/pull/3175)
- Add alwats->always correction. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3178](https://togithub.com/codespell-project/codespell/pull/3178)
- Add obsloete->obsolete and friend by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3019](https://togithub.com/codespell-project/codespell/pull/3019)
- Add entries to rare dictionary by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3179](https://togithub.com/codespell-project/codespell/pull/3179)
- Add Gelma's typos that start with "i" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3177](https://togithub.com/codespell-project/codespell/pull/3177)
- diagional -> diagonal by
[@&#8203;tkoyama010](https://togithub.com/tkoyama010) in
[https://github.com/codespell-project/codespell/pull/3183](https://togithub.com/codespell-project/codespell/pull/3183)
- Add Gelma's typos from "j" to "m" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3180](https://togithub.com/codespell-project/codespell/pull/3180)
- Add Gelma's typos from "n" to "o" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3182](https://togithub.com/codespell-project/codespell/pull/3182)
- Add corrections for vulnerbailit(y|ies)->vulnerabilit(y|ies). by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3185](https://togithub.com/codespell-project/codespell/pull/3185)
- Add Gelma's typos that start with "p" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3184](https://togithub.com/codespell-project/codespell/pull/3184)
- Add Gelma's typos from "q" to "r" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3186](https://togithub.com/codespell-project/codespell/pull/3186)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3193](https://togithub.com/codespell-project/codespell/pull/3193)
- openign->opening by [@&#8203;claydugo](https://togithub.com/claydugo)
in
[https://github.com/codespell-project/codespell/pull/3194](https://togithub.com/codespell-project/codespell/pull/3194)
- Add Gelma's typos that start with "s" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3187](https://togithub.com/codespell-project/codespell/pull/3187)
- Add spelling corrections for evaluate by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3195](https://togithub.com/codespell-project/codespell/pull/3195)
- Add Gelma's typos from "t" to "z" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3188](https://togithub.com/codespell-project/codespell/pull/3188)
- Dict update by [@&#8203;macpijan](https://togithub.com/macpijan) in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- Improve existing suggestions by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3200](https://togithub.com/codespell-project/codespell/pull/3200)
- Add a timeout to jobs that may benefit from it by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3199](https://togithub.com/codespell-project/codespell/pull/3199)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3201](https://togithub.com/codespell-project/codespell/pull/3201)
- Unify multiple identities of luzpuz and Dimitri by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3205](https://togithub.com/codespell-project/codespell/pull/3205)
- Ignore personal names Damon and Manuel by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3214](https://togithub.com/codespell-project/codespell/pull/3214)
- Ignore ill-formed INI files instead of crashing by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3213](https://togithub.com/codespell-project/codespell/pull/3213)
- don't show stacktrace from KeyboardInterrupt
[#&#8203;3217](https://togithub.com/codespell-project/codespell/issues/3217)
by [@&#8203;jcubic](https://togithub.com/jcubic) in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- Adding 'hareware' to spelling corrections. by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- Add typos for knownledge->knowledge, analyzis->analysis and
compialtion->compilation by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3222](https://togithub.com/codespell-project/codespell/pull/3222)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3228](https://togithub.com/codespell-project/codespell/pull/3228)
- Add --stdin-single-line option by
[@&#8203;Jendker](https://togithub.com/Jendker) in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- Add spelling corrections for parameters by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3230](https://togithub.com/codespell-project/codespell/pull/3230)
- Ignore line endings in exclude-file by
[@&#8203;Jackenmen](https://togithub.com/Jackenmen) in
[https://github.com/codespell-project/codespell/pull/1889](https://togithub.com/codespell-project/codespell/pull/1889)
- Add typo offsers by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3232](https://togithub.com/codespell-project/codespell/pull/3232)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3235](https://togithub.com/codespell-project/codespell/pull/3235)
- Process files in sorted rather than arbitrary order by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3234](https://togithub.com/codespell-project/codespell/pull/3234)
- Add refinement to 'remore' typo by
[@&#8203;luzpaz](https://togithub.com/luzpaz) in
[https://github.com/codespell-project/codespell/pull/3236](https://togithub.com/codespell-project/codespell/pull/3236)
- chore(license): update to use spdx id by
[@&#8203;chenrui333](https://togithub.com/chenrui333) in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- Materials science related corrections by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3237](https://togithub.com/codespell-project/codespell/pull/3237)
- Add spelling corrections for vulnerability and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3239](https://togithub.com/codespell-project/codespell/pull/3239)
- Bump actions/setup-python from 4 to 5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3240](https://togithub.com/codespell-project/codespell/pull/3240)
- add velcoity -> velocity by
[@&#8203;zingale](https://togithub.com/zingale) in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- black → ruff format by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3242](https://togithub.com/codespell-project/codespell/pull/3242)
- ot is a typo also for it, which i is close to o by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3247](https://togithub.com/codespell-project/codespell/pull/3247)
- Apply a selection of refurb rules by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3244](https://togithub.com/codespell-project/codespell/pull/3244)
- Get rid of autoflake by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3250](https://togithub.com/codespell-project/codespell/pull/3250)
- Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3253](https://togithub.com/codespell-project/codespell/pull/3253)
- Bump actions/download-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3254](https://togithub.com/codespell-project/codespell/pull/3254)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3257](https://togithub.com/codespell-project/codespell/pull/3257)
- Add spelling correction for miltiple and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3255](https://togithub.com/codespell-project/codespell/pull/3255)
- Collection of typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3251](https://togithub.com/codespell-project/codespell/pull/3251)
- test: remove warning when aspell is not installed by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- Add carrets->carets by [@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3263](https://togithub.com/codespell-project/codespell/pull/3263)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3264](https://togithub.com/codespell-project/codespell/pull/3264)
- Add support for ANSI colors on Windows by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3259](https://togithub.com/codespell-project/codespell/pull/3259)
- Add prettier to pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3268](https://togithub.com/codespell-project/codespell/pull/3268)
- Apply Repo-Review suggestions by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3265](https://togithub.com/codespell-project/codespell/pull/3265)
- dictionary: pathes can be patches by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3273](https://togithub.com/codespell-project/codespell/pull/3273)
- fix: typos in comments by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- doc: Specify .codespellrc is INI formatted by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3271](https://togithub.com/codespell-project/codespell/pull/3271)
- Add sanetize->sanitize by
[@&#8203;sshane](https://togithub.com/sshane) in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- Case ignore by [@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3272](https://togithub.com/codespell-project/codespell/pull/3272)
- Fixed
[#&#8203;3278](https://togithub.com/codespell-project/codespell/issues/3278)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- dictionnary: persan can be persian. by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3282](https://togithub.com/codespell-project/codespell/pull/3282)
- Add validaiton->validation, valuation by
[@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3281](https://togithub.com/codespell-project/codespell/pull/3281)
- Consistent title case capitalisation by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3286](https://togithub.com/codespell-project/codespell/pull/3286)
- Updated dictionary for
[#&#8203;2411](https://togithub.com/codespell-project/codespell/issues/2411)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3280](https://togithub.com/codespell-project/codespell/pull/3280)
- dict: falt can be fault or flat by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3289](https://togithub.com/codespell-project/codespell/pull/3289)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3291](https://togithub.com/codespell-project/codespell/pull/3291)
- Add acquistion->acquisition by
[@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- Adding fixes for recommond and recommonded by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3292](https://togithub.com/codespell-project/codespell/pull/3292)
- Add tox.ini file by [@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3269](https://togithub.com/codespell-project/codespell/pull/3269)
- Fixed
[#&#8203;3297](https://togithub.com/codespell-project/codespell/issues/3297)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3298](https://togithub.com/codespell-project/codespell/pull/3298)
- Enable lists in TOML config file by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3294](https://togithub.com/codespell-project/codespell/pull/3294)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3162](https://togithub.com/codespell-project/codespell/pull/3162)
- Fixed
[#&#8203;3301](https://togithub.com/codespell-project/codespell/issues/3301)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3302](https://togithub.com/codespell-project/codespell/pull/3302)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3303](https://togithub.com/codespell-project/codespell/pull/3303)
- Materials science related corrections 2 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3295](https://togithub.com/codespell-project/codespell/pull/3295)
- Add spelling corrections for sphere by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3304](https://togithub.com/codespell-project/codespell/pull/3304)
- Makes config for "count" more clear as a boolean by
[@&#8203;amarvin](https://togithub.com/amarvin) in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- quanitization -> quantization by
[@&#8203;claydugo](https://togithub.com/claydugo) in
[https://github.com/codespell-project/codespell/pull/3308](https://togithub.com/codespell-project/codespell/pull/3308)
- instroment->instrument by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3309](https://togithub.com/codespell-project/codespell/pull/3309)
- Add updadated->updated and uneared->unearned by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3310](https://togithub.com/codespell-project/codespell/pull/3310)
- initiase -> initialise by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3343](https://togithub.com/codespell-project/codespell/pull/3343)
- Adding correction for furance->furnace by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3347](https://togithub.com/codespell-project/codespell/pull/3347)
- Bump codecov/codecov-action from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3348](https://togithub.com/codespell-project/codespell/pull/3348)
- dict: disagreement by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3351](https://togithub.com/codespell-project/codespell/pull/3351)
- dict: False/true typos by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3350](https://togithub.com/codespell-project/codespell/pull/3350)
- sampe->sample by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3354](https://togithub.com/codespell-project/codespell/pull/3354)
- Multiple spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3349](https://togithub.com/codespell-project/codespell/pull/3349)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3352](https://togithub.com/codespell-project/codespell/pull/3352)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3357](https://togithub.com/codespell-project/codespell/pull/3357)
- Fix "dubious ownership" error in dev containers by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3361](https://togithub.com/codespell-project/codespell/pull/3361)
- Assorted mispellings by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3360](https://togithub.com/codespell-project/codespell/pull/3360)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3364](https://togithub.com/codespell-project/codespell/pull/3364)
- Add metadataa typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3368](https://togithub.com/codespell-project/codespell/pull/3368)
- Add corrections for all \*in->\*ing words starting with "A" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3336](https://togithub.com/codespell-project/codespell/pull/3336)
- Add corrections for all \*in->\*ing words starting with "B" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3312](https://togithub.com/codespell-project/codespell/pull/3312)
- Add corrections for all \*in->\*ing words starting with "C" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3314](https://togithub.com/codespell-project/codespell/pull/3314)
- editible->editable by
[@&#8203;skshetry](https://togithub.com/skshetry) in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- Add corrections for all \*in->\*ing words starting with "D" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3319](https://togithub.com/codespell-project/codespell/pull/3319)
- Add corrections for all \*in->\*ing words starting with "E" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3318](https://togithub.com/codespell-project/codespell/pull/3318)
- Add corrections for all \*in->\*ing words starting with "F" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3330](https://togithub.com/codespell-project/codespell/pull/3330)
- Add correction for spoofing and spoofed. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3370](https://togithub.com/codespell-project/codespell/pull/3370)
- Add reliabe->reliable by
[@&#8203;adamscott](https://togithub.com/adamscott) in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- Add corrections for all \*in->\*ing words starting with "G" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3325](https://togithub.com/codespell-project/codespell/pull/3325)
- Add corrections for all \*in->\*ing words starting with "H" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3315](https://togithub.com/codespell-project/codespell/pull/3315)
- Add corrections for all \*in->\*ing words starting with "I" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3329](https://togithub.com/codespell-project/codespell/pull/3329)
- Add corrections for all \*in->\*ing words starting with "J" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3331](https://togithub.com/codespell-project/codespell/pull/3331)
- Add corrections for all \*in->\*ing words starting with "K" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3332](https://togithub.com/codespell-project/codespell/pull/3332)
- Add corrections for all \*in->\*ing words starting with "L" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3326](https://togithub.com/codespell-project/codespell/pull/3326)
- Add corrections for all \*in->\*ing words starting with "M" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3317](https://togithub.com/codespell-project/codespell/pull/3317)
- Add corrections for all \*in->\*ing words starting with "N" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3320](https://togithub.com/codespell-project/codespell/pull/3320)
- Add corrections for all \*in->\*ing words starting with "O" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3313](https://togithub.com/codespell-project/codespell/pull/3313)
- Move focusin to code by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3373](https://togithub.com/codespell-project/codespell/pull/3373)
- Add filaname->filename by
[@&#8203;cjwatson](https://togithub.com/cjwatson) in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- Add corrections for all \*in->\*ing words starting with "R" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3324](https://togithub.com/codespell-project/codespell/pull/3324)
- Add corrections for all \*in->\*ing words starting with "S" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3316](https://togithub.com/codespell-project/codespell/pull/3316)
- Add corrections for all \*in->\*ing words starting with "P" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3322](https://togithub.com/codespell-project/codespell/pull/3322)
- Add corrections for all \*in->\*ing words starting with "Q" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3333](https://togithub.com/codespell-project/codespell/pull/3333)
- Add corrections for all \*in->\*ing words starting with "T" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3328](https://togithub.com/codespell-project/codespell/pull/3328)
- Add corrections for all \*in->\*ing words starting with "U" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3321](https://togithub.com/codespell-project/codespell/pull/3321)
- Add corrections for all \*in->\*ing words starting with "V" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3327](https://togithub.com/codespell-project/codespell/pull/3327)
- Add corrections for all \*in->\*ing words starting with "W" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3323](https://togithub.com/codespell-project/codespell/pull/3323)
- Add corrections for all \*in->\*ing words starting with "Y" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3334](https://togithub.com/codespell-project/codespell/pull/3334)
- Add corrections for all \*in->\*ing words starting with "Z" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3335](https://togithub.com/codespell-project/codespell/pull/3335)
- Add 'quotted->quoted' by
[@&#8203;sirosen](https://togithub.com/sirosen) in
[https://github.com/codespell-project/codespell/pull/3374](https://togithub.com/codespell-project/codespell/pull/3374)
- Remove reoccurrence from the dictionary.txt -- LGTM and popular word
by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3378](https://togithub.com/codespell-project/codespell/pull/3378)
- Add typos for expration(s) by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3377](https://togithub.com/codespell-project/codespell/pull/3377)
- Implement inline ignores by
[@&#8203;kaste](https://togithub.com/kaste) in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- Add softwrae typo fix by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3383](https://togithub.com/codespell-project/codespell/pull/3383)
- Add spelling corrections for morphology by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3379](https://togithub.com/codespell-project/codespell/pull/3379)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3382](https://togithub.com/codespell-project/codespell/pull/3382)
- Several spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3386](https://togithub.com/codespell-project/codespell/pull/3386)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3389](https://togithub.com/codespell-project/codespell/pull/3389)
- Add 'repeatition->repetition' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3388](https://togithub.com/codespell-project/codespell/pull/3388)
- Add labael->label and variants by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3384](https://togithub.com/codespell-project/codespell/pull/3384)
- docs: add the documentation of the new inline ignore comments by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- Add reposiroty->repository by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3393](https://togithub.com/codespell-project/codespell/pull/3393)
- Adding communicationg->communicating by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3394](https://togithub.com/codespell-project/codespell/pull/3394)
- Add 'croporate->corporate', 'incroporate->incorporate' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3395](https://togithub.com/codespell-project/codespell/pull/3395)
- docs: indentation error by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3392](https://togithub.com/codespell-project/codespell/pull/3392)
- More typos from Wikipedia by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3363](https://togithub.com/codespell-project/codespell/pull/3363)
- Add compatiblility / configurated by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3161](https://togithub.com/codespell-project/codespell/pull/3161)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3398](https://togithub.com/codespell-project/codespell/pull/3398)
- Handle multiline options by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3400](https://togithub.com/codespell-project/codespell/pull/3400)
- docs: just `codespell:ignore` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3397](https://togithub.com/codespell-project/codespell/pull/3397)
- Add `aftewards` misspelling by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3403](https://togithub.com/codespell-project/codespell/pull/3403)
- Add correction for trasversal and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3405](https://togithub.com/codespell-project/codespell/pull/3405)
- A few mispellings for the dictionnary by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3404](https://togithub.com/codespell-project/codespell/pull/3404)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3406](https://togithub.com/codespell-project/codespell/pull/3406)
- Options that expect a file, should accept lists of files too by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/2767](https://togithub.com/codespell-project/codespell/pull/2767)
- Add spelling correction for specialiaze/specialiase and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3409](https://togithub.com/codespell-project/codespell/pull/3409)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3411](https://togithub.com/codespell-project/codespell/pull/3411)
- Add statestics typo (github has over 300 hits) by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3412](https://togithub.com/codespell-project/codespell/pull/3412)
- nueroimaging typo (13 hits on github) -- domain specific but no doubt
wrong! by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3413](https://togithub.com/codespell-project/codespell/pull/3413)
- Added minor typos by [@&#8203;matlupi](https://togithub.com/matlupi)
in
[https://github.com/codespell-project/codespell/pull/3410](https://togithub.com/codespell-project/codespell/pull/3410)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3415](https://togithub.com/codespell-project/codespell/pull/3415)
- Add netflify typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3417](https://togithub.com/codespell-project/codespell/pull/3417)
- insstance typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3418](https://togithub.com/codespell-project/codespell/pull/3418)
- mian->main by [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo)
in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3420](https://togithub.com/codespell-project/codespell/pull/3420)
- Add coverage files to `.gitignore` by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3422](https://togithub.com/codespell-project/codespell/pull/3422)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3423](https://togithub.com/codespell-project/codespell/pull/3423)
- Add `arragne->arrange` typo by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3421](https://togithub.com/codespell-project/codespell/pull/3421)
- Materials science-related corrections 3 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3424](https://togithub.com/codespell-project/codespell/pull/3424)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3428](https://togithub.com/codespell-project/codespell/pull/3428)

#### New Contributors

- [@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- [@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- [@&#8203;macpijan](https://togithub.com/macpijan) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- [@&#8203;hugovk](https://togithub.com/hugovk) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- [@&#8203;jcubic](https://togithub.com/jcubic) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- [@&#8203;barndawgie](https://togithub.com/barndawgie) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- [@&#8203;Jendker](https://togithub.com/Jendker) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- [@&#8203;chenrui333](https://togithub.com/chenrui333) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- [@&#8203;zingale](https://togithub.com/zingale) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- [@&#8203;perillo](https://togithub.com/perillo) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- [@&#8203;vEnhance](https://togithub.com/vEnhance) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- [@&#8203;sshane](https://togithub.com/sshane) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- [@&#8203;matlupi](https://togithub.com/matlupi) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- [@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- [@&#8203;amarvin](https://togithub.com/amarvin) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- [@&#8203;skshetry](https://togithub.com/skshetry) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- [@&#8203;adamscott](https://togithub.com/adamscott) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- [@&#8203;cjwatson](https://togithub.com/cjwatson) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- [@&#8203;kaste](https://togithub.com/kaste) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- [@&#8203;12rambau](https://togithub.com/12rambau) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)

**Full Changelog**:
codespell-project/codespell@v2.2.6...v2.3.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/allenporter/pyrainbird).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jooola referenced this pull request in libretime/ansible-role-libretime Jun 22, 2024
….3.0 (#91)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[codespell-project/codespell](https://togithub.com/codespell-project/codespell)
| repository | minor | `v2.2.6` -> `v2.3.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

Note: The `pre-commit` manager in Renovate is not supported by the
`pre-commit` maintainers or community. Please do not report any problems
there, instead [create a Discussion in the Renovate
repository](https://togithub.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>codespell-project/codespell
(codespell-project/codespell)</summary>

###
[`v2.3.0`](https://togithub.com/codespell-project/codespell/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/codespell-project/codespell/compare/v2.2.6...v2.3.0)

#### What's Changed

- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3115](https://togithub.com/codespell-project/codespell/pull/3115)
- Add schematrion->schematron by
[@&#8203;AirQuick](https://togithub.com/AirQuick) in
[https://github.com/codespell-project/codespell/pull/3116](https://togithub.com/codespell-project/codespell/pull/3116)
- Add explicit Python 3.12 support by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3121](https://togithub.com/codespell-project/codespell/pull/3121)
- Add miscellaneous typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3117](https://togithub.com/codespell-project/codespell/pull/3117)
- fix: aesthetic(s) should be kept as is by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- Add more labour\* variants by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3128](https://togithub.com/codespell-project/codespell/pull/3128)
- Add additional spelling corrections for prior and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3135](https://togithub.com/codespell-project/codespell/pull/3135)
- Fix `no-commit-to-branch` Pre-Commit check by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3130](https://togithub.com/codespell-project/codespell/pull/3130)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3131](https://togithub.com/codespell-project/codespell/pull/3131)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3155](https://togithub.com/codespell-project/codespell/pull/3155)
- Return exit status in **main**.py by
[@&#8203;szepeviktor](https://togithub.com/szepeviktor) in
[https://github.com/codespell-project/codespell/pull/3157](https://togithub.com/codespell-project/codespell/pull/3157)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3158](https://togithub.com/codespell-project/codespell/pull/3158)
- Added new word by
[@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- `dictionary.txt` additions by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3149](https://togithub.com/codespell-project/codespell/pull/3149)
- Add Gelma's typos that start with "a" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3150](https://togithub.com/codespell-project/codespell/pull/3150)
- Add Gelma's typos from "b" to "cl" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3163](https://togithub.com/codespell-project/codespell/pull/3163)
- Add some academies typos by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3173](https://togithub.com/codespell-project/codespell/pull/3173)
- Add Gelma's typos from "co" to "cy" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3167](https://togithub.com/codespell-project/codespell/pull/3167)
- Add Gelma's typos that start with "d" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3168](https://togithub.com/codespell-project/codespell/pull/3168)
- Refactor code using `encodings` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3172](https://togithub.com/codespell-project/codespell/pull/3172)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3176](https://togithub.com/codespell-project/codespell/pull/3176)
- Add Gelma's typos that start with "e" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3174](https://togithub.com/codespell-project/codespell/pull/3174)
- Add Gelma's typos from "f" to "h" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3175](https://togithub.com/codespell-project/codespell/pull/3175)
- Add alwats->always correction. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3178](https://togithub.com/codespell-project/codespell/pull/3178)
- Add obsloete->obsolete and friend by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3019](https://togithub.com/codespell-project/codespell/pull/3019)
- Add entries to rare dictionary by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3179](https://togithub.com/codespell-project/codespell/pull/3179)
- Add Gelma's typos that start with "i" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3177](https://togithub.com/codespell-project/codespell/pull/3177)
- diagional -> diagonal by
[@&#8203;tkoyama010](https://togithub.com/tkoyama010) in
[https://github.com/codespell-project/codespell/pull/3183](https://togithub.com/codespell-project/codespell/pull/3183)
- Add Gelma's typos from "j" to "m" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3180](https://togithub.com/codespell-project/codespell/pull/3180)
- Add Gelma's typos from "n" to "o" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3182](https://togithub.com/codespell-project/codespell/pull/3182)
- Add corrections for vulnerbailit(y|ies)->vulnerabilit(y|ies). by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3185](https://togithub.com/codespell-project/codespell/pull/3185)
- Add Gelma's typos that start with "p" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3184](https://togithub.com/codespell-project/codespell/pull/3184)
- Add Gelma's typos from "q" to "r" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3186](https://togithub.com/codespell-project/codespell/pull/3186)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3193](https://togithub.com/codespell-project/codespell/pull/3193)
- openign->opening by [@&#8203;claydugo](https://togithub.com/claydugo)
in
[https://github.com/codespell-project/codespell/pull/3194](https://togithub.com/codespell-project/codespell/pull/3194)
- Add Gelma's typos that start with "s" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3187](https://togithub.com/codespell-project/codespell/pull/3187)
- Add spelling corrections for evaluate by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3195](https://togithub.com/codespell-project/codespell/pull/3195)
- Add Gelma's typos from "t" to "z" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3188](https://togithub.com/codespell-project/codespell/pull/3188)
- Dict update by [@&#8203;macpijan](https://togithub.com/macpijan) in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- Improve existing suggestions by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3200](https://togithub.com/codespell-project/codespell/pull/3200)
- Add a timeout to jobs that may benefit from it by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3199](https://togithub.com/codespell-project/codespell/pull/3199)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3201](https://togithub.com/codespell-project/codespell/pull/3201)
- Unify multiple identities of luzpuz and Dimitri by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3205](https://togithub.com/codespell-project/codespell/pull/3205)
- Ignore personal names Damon and Manuel by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3214](https://togithub.com/codespell-project/codespell/pull/3214)
- Ignore ill-formed INI files instead of crashing by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3213](https://togithub.com/codespell-project/codespell/pull/3213)
- don't show stacktrace from KeyboardInterrupt
[#&#8203;3217](https://togithub.com/codespell-project/codespell/issues/3217)
by [@&#8203;jcubic](https://togithub.com/jcubic) in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- Adding 'hareware' to spelling corrections. by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- Add typos for knownledge->knowledge, analyzis->analysis and
compialtion->compilation by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3222](https://togithub.com/codespell-project/codespell/pull/3222)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3228](https://togithub.com/codespell-project/codespell/pull/3228)
- Add --stdin-single-line option by
[@&#8203;Jendker](https://togithub.com/Jendker) in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- Add spelling corrections for parameters by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3230](https://togithub.com/codespell-project/codespell/pull/3230)
- Ignore line endings in exclude-file by
[@&#8203;Jackenmen](https://togithub.com/Jackenmen) in
[https://github.com/codespell-project/codespell/pull/1889](https://togithub.com/codespell-project/codespell/pull/1889)
- Add typo offsers by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3232](https://togithub.com/codespell-project/codespell/pull/3232)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3235](https://togithub.com/codespell-project/codespell/pull/3235)
- Process files in sorted rather than arbitrary order by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3234](https://togithub.com/codespell-project/codespell/pull/3234)
- Add refinement to 'remore' typo by
[@&#8203;luzpaz](https://togithub.com/luzpaz) in
[https://github.com/codespell-project/codespell/pull/3236](https://togithub.com/codespell-project/codespell/pull/3236)
- chore(license): update to use spdx id by
[@&#8203;chenrui333](https://togithub.com/chenrui333) in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- Materials science related corrections by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3237](https://togithub.com/codespell-project/codespell/pull/3237)
- Add spelling corrections for vulnerability and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3239](https://togithub.com/codespell-project/codespell/pull/3239)
- Bump actions/setup-python from 4 to 5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3240](https://togithub.com/codespell-project/codespell/pull/3240)
- add velcoity -> velocity by
[@&#8203;zingale](https://togithub.com/zingale) in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- black → ruff format by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3242](https://togithub.com/codespell-project/codespell/pull/3242)
- ot is a typo also for it, which i is close to o by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3247](https://togithub.com/codespell-project/codespell/pull/3247)
- Apply a selection of refurb rules by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3244](https://togithub.com/codespell-project/codespell/pull/3244)
- Get rid of autoflake by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3250](https://togithub.com/codespell-project/codespell/pull/3250)
- Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3253](https://togithub.com/codespell-project/codespell/pull/3253)
- Bump actions/download-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3254](https://togithub.com/codespell-project/codespell/pull/3254)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3257](https://togithub.com/codespell-project/codespell/pull/3257)
- Add spelling correction for miltiple and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3255](https://togithub.com/codespell-project/codespell/pull/3255)
- Collection of typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3251](https://togithub.com/codespell-project/codespell/pull/3251)
- test: remove warning when aspell is not installed by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- Add carrets->carets by [@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3263](https://togithub.com/codespell-project/codespell/pull/3263)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3264](https://togithub.com/codespell-project/codespell/pull/3264)
- Add support for ANSI colors on Windows by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3259](https://togithub.com/codespell-project/codespell/pull/3259)
- Add prettier to pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3268](https://togithub.com/codespell-project/codespell/pull/3268)
- Apply Repo-Review suggestions by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3265](https://togithub.com/codespell-project/codespell/pull/3265)
- dictionary: pathes can be patches by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3273](https://togithub.com/codespell-project/codespell/pull/3273)
- fix: typos in comments by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- doc: Specify .codespellrc is INI formatted by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3271](https://togithub.com/codespell-project/codespell/pull/3271)
- Add sanetize->sanitize by
[@&#8203;sshane](https://togithub.com/sshane) in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- Case ignore by [@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3272](https://togithub.com/codespell-project/codespell/pull/3272)
- Fixed
[#&#8203;3278](https://togithub.com/codespell-project/codespell/issues/3278)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- dictionnary: persan can be persian. by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3282](https://togithub.com/codespell-project/codespell/pull/3282)
- Add validaiton->validation, valuation by
[@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3281](https://togithub.com/codespell-project/codespell/pull/3281)
- Consistent title case capitalisation by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3286](https://togithub.com/codespell-project/codespell/pull/3286)
- Updated dictionary for
[#&#8203;2411](https://togithub.com/codespell-project/codespell/issues/2411)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3280](https://togithub.com/codespell-project/codespell/pull/3280)
- dict: falt can be fault or flat by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3289](https://togithub.com/codespell-project/codespell/pull/3289)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3291](https://togithub.com/codespell-project/codespell/pull/3291)
- Add acquistion->acquisition by
[@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- Adding fixes for recommond and recommonded by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3292](https://togithub.com/codespell-project/codespell/pull/3292)
- Add tox.ini file by [@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3269](https://togithub.com/codespell-project/codespell/pull/3269)
- Fixed
[#&#8203;3297](https://togithub.com/codespell-project/codespell/issues/3297)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3298](https://togithub.com/codespell-project/codespell/pull/3298)
- Enable lists in TOML config file by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3294](https://togithub.com/codespell-project/codespell/pull/3294)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3162](https://togithub.com/codespell-project/codespell/pull/3162)
- Fixed
[#&#8203;3301](https://togithub.com/codespell-project/codespell/issues/3301)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3302](https://togithub.com/codespell-project/codespell/pull/3302)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3303](https://togithub.com/codespell-project/codespell/pull/3303)
- Materials science related corrections 2 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3295](https://togithub.com/codespell-project/codespell/pull/3295)
- Add spelling corrections for sphere by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3304](https://togithub.com/codespell-project/codespell/pull/3304)
- Makes config for "count" more clear as a boolean by
[@&#8203;amarvin](https://togithub.com/amarvin) in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- quanitization -> quantization by
[@&#8203;claydugo](https://togithub.com/claydugo) in
[https://github.com/codespell-project/codespell/pull/3308](https://togithub.com/codespell-project/codespell/pull/3308)
- instroment->instrument by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3309](https://togithub.com/codespell-project/codespell/pull/3309)
- Add updadated->updated and uneared->unearned by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3310](https://togithub.com/codespell-project/codespell/pull/3310)
- initiase -> initialise by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3343](https://togithub.com/codespell-project/codespell/pull/3343)
- Adding correction for furance->furnace by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3347](https://togithub.com/codespell-project/codespell/pull/3347)
- Bump codecov/codecov-action from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3348](https://togithub.com/codespell-project/codespell/pull/3348)
- dict: disagreement by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3351](https://togithub.com/codespell-project/codespell/pull/3351)
- dict: False/true typos by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3350](https://togithub.com/codespell-project/codespell/pull/3350)
- sampe->sample by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3354](https://togithub.com/codespell-project/codespell/pull/3354)
- Multiple spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3349](https://togithub.com/codespell-project/codespell/pull/3349)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3352](https://togithub.com/codespell-project/codespell/pull/3352)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3357](https://togithub.com/codespell-project/codespell/pull/3357)
- Fix "dubious ownership" error in dev containers by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3361](https://togithub.com/codespell-project/codespell/pull/3361)
- Assorted mispellings by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3360](https://togithub.com/codespell-project/codespell/pull/3360)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3364](https://togithub.com/codespell-project/codespell/pull/3364)
- Add metadataa typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3368](https://togithub.com/codespell-project/codespell/pull/3368)
- Add corrections for all \*in->\*ing words starting with "A" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3336](https://togithub.com/codespell-project/codespell/pull/3336)
- Add corrections for all \*in->\*ing words starting with "B" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3312](https://togithub.com/codespell-project/codespell/pull/3312)
- Add corrections for all \*in->\*ing words starting with "C" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3314](https://togithub.com/codespell-project/codespell/pull/3314)
- editible->editable by
[@&#8203;skshetry](https://togithub.com/skshetry) in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- Add corrections for all \*in->\*ing words starting with "D" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3319](https://togithub.com/codespell-project/codespell/pull/3319)
- Add corrections for all \*in->\*ing words starting with "E" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3318](https://togithub.com/codespell-project/codespell/pull/3318)
- Add corrections for all \*in->\*ing words starting with "F" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3330](https://togithub.com/codespell-project/codespell/pull/3330)
- Add correction for spoofing and spoofed. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3370](https://togithub.com/codespell-project/codespell/pull/3370)
- Add reliabe->reliable by
[@&#8203;adamscott](https://togithub.com/adamscott) in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- Add corrections for all \*in->\*ing words starting with "G" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3325](https://togithub.com/codespell-project/codespell/pull/3325)
- Add corrections for all \*in->\*ing words starting with "H" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3315](https://togithub.com/codespell-project/codespell/pull/3315)
- Add corrections for all \*in->\*ing words starting with "I" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3329](https://togithub.com/codespell-project/codespell/pull/3329)
- Add corrections for all \*in->\*ing words starting with "J" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3331](https://togithub.com/codespell-project/codespell/pull/3331)
- Add corrections for all \*in->\*ing words starting with "K" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3332](https://togithub.com/codespell-project/codespell/pull/3332)
- Add corrections for all \*in->\*ing words starting with "L" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3326](https://togithub.com/codespell-project/codespell/pull/3326)
- Add corrections for all \*in->\*ing words starting with "M" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3317](https://togithub.com/codespell-project/codespell/pull/3317)
- Add corrections for all \*in->\*ing words starting with "N" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3320](https://togithub.com/codespell-project/codespell/pull/3320)
- Add corrections for all \*in->\*ing words starting with "O" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3313](https://togithub.com/codespell-project/codespell/pull/3313)
- Move focusin to code by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3373](https://togithub.com/codespell-project/codespell/pull/3373)
- Add filaname->filename by
[@&#8203;cjwatson](https://togithub.com/cjwatson) in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- Add corrections for all \*in->\*ing words starting with "R" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3324](https://togithub.com/codespell-project/codespell/pull/3324)
- Add corrections for all \*in->\*ing words starting with "S" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3316](https://togithub.com/codespell-project/codespell/pull/3316)
- Add corrections for all \*in->\*ing words starting with "P" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3322](https://togithub.com/codespell-project/codespell/pull/3322)
- Add corrections for all \*in->\*ing words starting with "Q" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3333](https://togithub.com/codespell-project/codespell/pull/3333)
- Add corrections for all \*in->\*ing words starting with "T" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3328](https://togithub.com/codespell-project/codespell/pull/3328)
- Add corrections for all \*in->\*ing words starting with "U" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3321](https://togithub.com/codespell-project/codespell/pull/3321)
- Add corrections for all \*in->\*ing words starting with "V" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3327](https://togithub.com/codespell-project/codespell/pull/3327)
- Add corrections for all \*in->\*ing words starting with "W" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3323](https://togithub.com/codespell-project/codespell/pull/3323)
- Add corrections for all \*in->\*ing words starting with "Y" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3334](https://togithub.com/codespell-project/codespell/pull/3334)
- Add corrections for all \*in->\*ing words starting with "Z" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3335](https://togithub.com/codespell-project/codespell/pull/3335)
- Add 'quotted->quoted' by
[@&#8203;sirosen](https://togithub.com/sirosen) in
[https://github.com/codespell-project/codespell/pull/3374](https://togithub.com/codespell-project/codespell/pull/3374)
- Remove reoccurrence from the dictionary.txt -- LGTM and popular word
by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3378](https://togithub.com/codespell-project/codespell/pull/3378)
- Add typos for expration(s) by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3377](https://togithub.com/codespell-project/codespell/pull/3377)
- Implement inline ignores by
[@&#8203;kaste](https://togithub.com/kaste) in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- Add softwrae typo fix by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3383](https://togithub.com/codespell-project/codespell/pull/3383)
- Add spelling corrections for morphology by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3379](https://togithub.com/codespell-project/codespell/pull/3379)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3382](https://togithub.com/codespell-project/codespell/pull/3382)
- Several spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3386](https://togithub.com/codespell-project/codespell/pull/3386)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3389](https://togithub.com/codespell-project/codespell/pull/3389)
- Add 'repeatition->repetition' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3388](https://togithub.com/codespell-project/codespell/pull/3388)
- Add labael->label and variants by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3384](https://togithub.com/codespell-project/codespell/pull/3384)
- docs: add the documentation of the new inline ignore comments by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- Add reposiroty->repository by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3393](https://togithub.com/codespell-project/codespell/pull/3393)
- Adding communicationg->communicating by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3394](https://togithub.com/codespell-project/codespell/pull/3394)
- Add 'croporate->corporate', 'incroporate->incorporate' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3395](https://togithub.com/codespell-project/codespell/pull/3395)
- docs: indentation error by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3392](https://togithub.com/codespell-project/codespell/pull/3392)
- More typos from Wikipedia by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3363](https://togithub.com/codespell-project/codespell/pull/3363)
- Add compatiblility / configurated by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3161](https://togithub.com/codespell-project/codespell/pull/3161)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3398](https://togithub.com/codespell-project/codespell/pull/3398)
- Handle multiline options by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3400](https://togithub.com/codespell-project/codespell/pull/3400)
- docs: just `codespell:ignore` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3397](https://togithub.com/codespell-project/codespell/pull/3397)
- Add `aftewards` misspelling by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3403](https://togithub.com/codespell-project/codespell/pull/3403)
- Add correction for trasversal and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3405](https://togithub.com/codespell-project/codespell/pull/3405)
- A few mispellings for the dictionnary by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3404](https://togithub.com/codespell-project/codespell/pull/3404)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3406](https://togithub.com/codespell-project/codespell/pull/3406)
- Options that expect a file, should accept lists of files too by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/2767](https://togithub.com/codespell-project/codespell/pull/2767)
- Add spelling correction for specialiaze/specialiase and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3409](https://togithub.com/codespell-project/codespell/pull/3409)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3411](https://togithub.com/codespell-project/codespell/pull/3411)
- Add statestics typo (github has over 300 hits) by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3412](https://togithub.com/codespell-project/codespell/pull/3412)
- nueroimaging typo (13 hits on github) -- domain specific but no doubt
wrong! by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3413](https://togithub.com/codespell-project/codespell/pull/3413)
- Added minor typos by [@&#8203;matlupi](https://togithub.com/matlupi)
in
[https://github.com/codespell-project/codespell/pull/3410](https://togithub.com/codespell-project/codespell/pull/3410)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3415](https://togithub.com/codespell-project/codespell/pull/3415)
- Add netflify typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3417](https://togithub.com/codespell-project/codespell/pull/3417)
- insstance typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3418](https://togithub.com/codespell-project/codespell/pull/3418)
- mian->main by [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo)
in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3420](https://togithub.com/codespell-project/codespell/pull/3420)
- Add coverage files to `.gitignore` by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3422](https://togithub.com/codespell-project/codespell/pull/3422)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3423](https://togithub.com/codespell-project/codespell/pull/3423)
- Add `arragne->arrange` typo by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3421](https://togithub.com/codespell-project/codespell/pull/3421)
- Materials science-related corrections 3 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3424](https://togithub.com/codespell-project/codespell/pull/3424)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3428](https://togithub.com/codespell-project/codespell/pull/3428)

#### New Contributors

- [@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- [@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- [@&#8203;macpijan](https://togithub.com/macpijan) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- [@&#8203;hugovk](https://togithub.com/hugovk) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- [@&#8203;jcubic](https://togithub.com/jcubic) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- [@&#8203;barndawgie](https://togithub.com/barndawgie) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- [@&#8203;Jendker](https://togithub.com/Jendker) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- [@&#8203;chenrui333](https://togithub.com/chenrui333) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- [@&#8203;zingale](https://togithub.com/zingale) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- [@&#8203;perillo](https://togithub.com/perillo) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- [@&#8203;vEnhance](https://togithub.com/vEnhance) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- [@&#8203;sshane](https://togithub.com/sshane) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- [@&#8203;matlupi](https://togithub.com/matlupi) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- [@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- [@&#8203;amarvin](https://togithub.com/amarvin) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- [@&#8203;skshetry](https://togithub.com/skshetry) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- [@&#8203;adamscott](https://togithub.com/adamscott) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- [@&#8203;cjwatson](https://togithub.com/cjwatson) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- [@&#8203;kaste](https://togithub.com/kaste) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- [@&#8203;12rambau](https://togithub.com/12rambau) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)

**Full Changelog**:
codespell-project/codespell@v2.2.6...v2.3.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/libretime/ansible-role-libretime).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
AlexWaygood referenced this pull request in AlexWaygood/typeshed-stats Jul 1, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | Age | Adoption | Passing |
Confidence |
|---|---|---|---|---|---|---|---|
|
[adamchainz/blacken-docs](https://togithub.com/adamchainz/blacken-docs)
| repository | minor | `1.16.0` -> `1.18.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/adamchainz%2fblacken-docs/1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/adamchainz%2fblacken-docs/1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/adamchainz%2fblacken-docs/1.16.0/1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/adamchainz%2fblacken-docs/1.16.0/1.18.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[astral-sh/ruff-pre-commit](https://togithub.com/astral-sh/ruff-pre-commit)
| repository | minor | `v0.3.5` -> `v0.5.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/astral-sh%2fruff-pre-commit/v0.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/astral-sh%2fruff-pre-commit/v0.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/astral-sh%2fruff-pre-commit/v0.3.5/v0.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/astral-sh%2fruff-pre-commit/v0.3.5/v0.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[codespell-project/codespell](https://togithub.com/codespell-project/codespell)
| repository | minor | `v2.2.6` -> `v2.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/codespell-project%2fcodespell/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/codespell-project%2fcodespell/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/codespell-project%2fcodespell/v2.2.6/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/codespell-project%2fcodespell/v2.2.6/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [docs/MarkDown](https://togithub.com/Python-Markdown/markdown)
([changelog](https://python-markdown.github.io/changelog/)) |
project.optional-dependencies | minor | `==3.5.2` -> `==3.6` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/docs%2fMarkDown/3.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/docs%2fMarkDown/3.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/docs%2fMarkDown/3.5.2/3.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/docs%2fMarkDown/3.5.2/3.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [docs/mkdocs](https://togithub.com/mkdocs/mkdocs)
([changelog](https://www.mkdocs.org/about/release-notes/)) |
project.optional-dependencies | minor | `==1.5.3` -> `==1.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/docs%2fmkdocs/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/docs%2fmkdocs/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/docs%2fmkdocs/1.5.3/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/docs%2fmkdocs/1.5.3/1.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [docs/mkdocs-material](https://togithub.com/squidfunk/mkdocs-material)
([changelog](https://squidfunk.github.io/mkdocs-material/changelog/)) |
project.optional-dependencies | patch | `==9.5.16` -> `==9.5.27` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/docs%2fmkdocs-material/9.5.27?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/docs%2fmkdocs-material/9.5.27?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/docs%2fmkdocs-material/9.5.16/9.5.27?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/docs%2fmkdocs-material/9.5.16/9.5.27?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [docs/mkdocstrings](https://togithub.com/mkdocstrings/mkdocstrings)
([changelog](https://mkdocstrings.github.io/changelog)) |
project.optional-dependencies | minor | `==0.24.1` -> `==0.25.1` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/docs%2fmkdocstrings/0.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/docs%2fmkdocstrings/0.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/docs%2fmkdocstrings/0.24.1/0.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/docs%2fmkdocstrings/0.24.1/0.25.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [docs/mkdocstrings-python](https://togithub.com/mkdocstrings/python)
([changelog](https://mkdocstrings.github.io/python/changelog)) |
project.optional-dependencies | minor | `==1.9.0` -> `==1.10.5` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/docs%2fmkdocstrings-python/1.10.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/docs%2fmkdocstrings-python/1.10.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/docs%2fmkdocstrings-python/1.9.0/1.10.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/docs%2fmkdocstrings-python/1.9.0/1.10.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[igorshubovych/markdownlint-cli](https://togithub.com/igorshubovych/markdownlint-cli)
| repository | minor | `v0.39.0` -> `v0.41.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/igorshubovych%2fmarkdownlint-cli/v0.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/igorshubovych%2fmarkdownlint-cli/v0.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/igorshubovych%2fmarkdownlint-cli/v0.39.0/v0.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/igorshubovych%2fmarkdownlint-cli/v0.39.0/v0.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [misc-lint/ruff](https://docs.astral.sh/ruff)
([source](https://togithub.com/astral-sh/ruff),
[changelog](https://togithub.com/astral-sh/ruff/blob/main/CHANGELOG.md))
| project.optional-dependencies | minor | `==0.3.5` -> `==0.5.0` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/misc-lint%2fruff/0.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/misc-lint%2fruff/0.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/misc-lint%2fruff/0.3.5/0.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/misc-lint%2fruff/0.3.5/0.5.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[pre-commit/pre-commit-hooks](https://togithub.com/pre-commit/pre-commit-hooks)
| repository | minor | `v4.5.0` -> `v4.6.0` |
[![age](https://developer.mend.io/api/mc/badges/age/github-tags/pre-commit%2fpre-commit-hooks/v4.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/github-tags/pre-commit%2fpre-commit-hooks/v4.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/github-tags/pre-commit%2fpre-commit-hooks/v4.5.0/v4.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/pre-commit%2fpre-commit-hooks/v4.5.0/v4.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [pytest/coverage](https://togithub.com/nedbat/coveragepy) |
project.optional-dependencies | minor | `==7.4.4` -> `==7.5.4` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/pytest%2fcoverage/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/pytest%2fcoverage/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/pytest%2fcoverage/7.4.4/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pytest%2fcoverage/7.4.4/7.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [pytest/pytest](https://togithub.com/pytest-dev/pytest)
([changelog](https://docs.pytest.org/en/stable/changelog.html)) |
project.optional-dependencies | minor | `==8.1.1` -> `==8.2.2` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/pytest%2fpytest/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/pytest%2fpytest/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/pytest%2fpytest/8.1.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pytest%2fpytest/8.1.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[pytest/pytest-asyncio](https://togithub.com/pytest-dev/pytest-asyncio)
([changelog](https://pytest-asyncio.readthedocs.io/en/latest/reference/changelog.html))
| project.optional-dependencies | patch | `==0.23.6` -> `==0.23.7` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/pytest%2fpytest-asyncio/0.23.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/pytest%2fpytest-asyncio/0.23.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/pytest%2fpytest-asyncio/0.23.6/0.23.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pytest%2fpytest-asyncio/0.23.6/0.23.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [typecheck/mypy](https://www.mypy-lang.org/)
([source](https://togithub.com/python/mypy),
[changelog](https://mypy-lang.blogspot.com/)) |
project.optional-dependencies | minor | `==1.9.0` -> `==1.10.1` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/typecheck%2fmypy/1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/typecheck%2fmypy/1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/typecheck%2fmypy/1.9.0/1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/typecheck%2fmypy/1.9.0/1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [typecheck/types-beautifulsoup4](https://togithub.com/python/typeshed)
([changelog](https://togithub.com/typeshed-internal/stub_uploader/blob/main/data/changelogs/beautifulsoup4.md))
| project.optional-dependencies | patch | `==4.12.0.20240229` ->
`==4.12.0.20240511` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/typecheck%2ftypes-beautifulsoup4/4.12.0.20240511?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/typecheck%2ftypes-beautifulsoup4/4.12.0.20240511?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/typecheck%2ftypes-beautifulsoup4/4.12.0.20240229/4.12.0.20240511?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/typecheck%2ftypes-beautifulsoup4/4.12.0.20240229/4.12.0.20240511?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

Note: The `pre-commit` manager in Renovate is not supported by the
`pre-commit` maintainers or community. Please do not report any problems
there, instead [create a Discussion in the Renovate
repository](https://togithub.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>adamchainz/blacken-docs (adamchainz/blacken-docs)</summary>

###
[`v1.18.0`](https://togithub.com/adamchainz/blacken-docs/blob/HEAD/CHANGELOG.rst#1180-2024-06-30)

[Compare
Source](https://togithub.com/adamchainz/blacken-docs/compare/1.17.0...1.18.0)

-   Add support for on/off comments.

Thanks to Timothée Mazzucotelli in `PR #&#8203;287
<https://github.com/adamchainz/blacken-docs/pull/287>`\__.

- Fix Markdown `pycon` formatting to allow formatting the rest of the
file.

###
[`v1.17.0`](https://togithub.com/adamchainz/blacken-docs/blob/HEAD/CHANGELOG.rst#1170-2024-06-29)

[Compare
Source](https://togithub.com/adamchainz/blacken-docs/compare/1.16.0...1.17.0)

-   Add a `--check` option.
When used, blacken-docs will not modify files but indicate when changes
are necessary with a message and non-zero exit code.

Thanks to Joaquim Esteves in `PR #&#8203;278
<https://github.com/adamchainz/blacken-docs/pull/278>`\__.

-   Allow options in LaTeX minted blocks.

Thanks to Peter Cock in `PR #&#8203;313
<https://github.com/adamchainz/blacken-docs/pull/313>`\__.

-   Ignore language specifiers after newlines in Markdown code blocks.

Thanks to Harutaka Kawamura in `PR #&#8203;283
<https://github.com/adamchainz/blacken-docs/pull/283>`\__.

</details>

<details>
<summary>astral-sh/ruff-pre-commit (astral-sh/ruff-pre-commit)</summary>

###
[`v0.5.0`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.5.0)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.10...v0.5.0)

See: https://github.com/astral-sh/ruff/releases/tag/0.5.0

###
[`v0.4.10`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.10)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.9...v0.4.10)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.10

###
[`v0.4.9`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.9)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.8...v0.4.9)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.9

###
[`v0.4.8`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.8)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.7...v0.4.8)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.8

###
[`v0.4.7`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.7)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.6...v0.4.7)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.7

###
[`v0.4.6`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.6)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.5...v0.4.6)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.6

###
[`v0.4.5`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.5)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.4...v0.4.5)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.5

###
[`v0.4.4`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.4)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.3...v0.4.4)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.4

###
[`v0.4.3`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.3)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.2...v0.4.3)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.3

###
[`v0.4.2`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.2)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.1...v0.4.2)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.2

###
[`v0.4.1`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.1)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.4.0...v0.4.1)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.1

###
[`v0.4.0`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.4.0)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.3.7...v0.4.0)

See: https://github.com/astral-sh/ruff/releases/tag/v0.4.0

###
[`v0.3.7`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.3.7)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.3.6...v0.3.7)

See: https://github.com/astral-sh/ruff/releases/tag/v0.3.7

###
[`v0.3.6`](https://togithub.com/astral-sh/ruff-pre-commit/releases/tag/v0.3.6)

[Compare
Source](https://togithub.com/astral-sh/ruff-pre-commit/compare/v0.3.5...v0.3.6)

See: https://github.com/astral-sh/ruff/releases/tag/v0.3.6

</details>

<details>
<summary>codespell-project/codespell
(codespell-project/codespell)</summary>

###
[`v2.3.0`](https://togithub.com/codespell-project/codespell/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/codespell-project/codespell/compare/v2.2.6...v2.3.0)

#### What's Changed

- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3115](https://togithub.com/codespell-project/codespell/pull/3115)
- Add schematrion->schematron by
[@&#8203;AirQuick](https://togithub.com/AirQuick) in
[https://github.com/codespell-project/codespell/pull/3116](https://togithub.com/codespell-project/codespell/pull/3116)
- Add explicit Python 3.12 support by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3121](https://togithub.com/codespell-project/codespell/pull/3121)
- Add miscellaneous typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3117](https://togithub.com/codespell-project/codespell/pull/3117)
- fix: aesthetic(s) should be kept as is by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- Add more labour\* variants by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3128](https://togithub.com/codespell-project/codespell/pull/3128)
- Add additional spelling corrections for prior and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3135](https://togithub.com/codespell-project/codespell/pull/3135)
- Fix `no-commit-to-branch` Pre-Commit check by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3130](https://togithub.com/codespell-project/codespell/pull/3130)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3131](https://togithub.com/codespell-project/codespell/pull/3131)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3155](https://togithub.com/codespell-project/codespell/pull/3155)
- Return exit status in **main**.py by
[@&#8203;szepeviktor](https://togithub.com/szepeviktor) in
[https://github.com/codespell-project/codespell/pull/3157](https://togithub.com/codespell-project/codespell/pull/3157)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3158](https://togithub.com/codespell-project/codespell/pull/3158)
- Added new word by
[@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- `dictionary.txt` additions by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3149](https://togithub.com/codespell-project/codespell/pull/3149)
- Add Gelma's typos that start with "a" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3150](https://togithub.com/codespell-project/codespell/pull/3150)
- Add Gelma's typos from "b" to "cl" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3163](https://togithub.com/codespell-project/codespell/pull/3163)
- Add some academies typos by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3173](https://togithub.com/codespell-project/codespell/pull/3173)
- Add Gelma's typos from "co" to "cy" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3167](https://togithub.com/codespell-project/codespell/pull/3167)
- Add Gelma's typos that start with "d" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3168](https://togithub.com/codespell-project/codespell/pull/3168)
- Refactor code using `encodings` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3172](https://togithub.com/codespell-project/codespell/pull/3172)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3176](https://togithub.com/codespell-project/codespell/pull/3176)
- Add Gelma's typos that start with "e" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3174](https://togithub.com/codespell-project/codespell/pull/3174)
- Add Gelma's typos from "f" to "h" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3175](https://togithub.com/codespell-project/codespell/pull/3175)
- Add alwats->always correction. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3178](https://togithub.com/codespell-project/codespell/pull/3178)
- Add obsloete->obsolete and friend by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3019](https://togithub.com/codespell-project/codespell/pull/3019)
- Add entries to rare dictionary by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3179](https://togithub.com/codespell-project/codespell/pull/3179)
- Add Gelma's typos that start with "i" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3177](https://togithub.com/codespell-project/codespell/pull/3177)
- diagional -> diagonal by
[@&#8203;tkoyama010](https://togithub.com/tkoyama010) in
[https://github.com/codespell-project/codespell/pull/3183](https://togithub.com/codespell-project/codespell/pull/3183)
- Add Gelma's typos from "j" to "m" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3180](https://togithub.com/codespell-project/codespell/pull/3180)
- Add Gelma's typos from "n" to "o" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3182](https://togithub.com/codespell-project/codespell/pull/3182)
- Add corrections for vulnerbailit(y|ies)->vulnerabilit(y|ies). by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3185](https://togithub.com/codespell-project/codespell/pull/3185)
- Add Gelma's typos that start with "p" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3184](https://togithub.com/codespell-project/codespell/pull/3184)
- Add Gelma's typos from "q" to "r" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3186](https://togithub.com/codespell-project/codespell/pull/3186)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3193](https://togithub.com/codespell-project/codespell/pull/3193)
- openign->opening by [@&#8203;claydugo](https://togithub.com/claydugo)
in
[https://github.com/codespell-project/codespell/pull/3194](https://togithub.com/codespell-project/codespell/pull/3194)
- Add Gelma's typos that start with "s" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3187](https://togithub.com/codespell-project/codespell/pull/3187)
- Add spelling corrections for evaluate by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3195](https://togithub.com/codespell-project/codespell/pull/3195)
- Add Gelma's typos from "t" to "z" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3188](https://togithub.com/codespell-project/codespell/pull/3188)
- Dict update by [@&#8203;macpijan](https://togithub.com/macpijan) in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- Improve existing suggestions by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3200](https://togithub.com/codespell-project/codespell/pull/3200)
- Add a timeout to jobs that may benefit from it by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3199](https://togithub.com/codespell-project/codespell/pull/3199)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3201](https://togithub.com/codespell-project/codespell/pull/3201)
- Unify multiple identities of luzpuz and Dimitri by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3205](https://togithub.com/codespell-project/codespell/pull/3205)
- Ignore personal names Damon and Manuel by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3214](https://togithub.com/codespell-project/codespell/pull/3214)
- Ignore ill-formed INI files instead of crashing by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3213](https://togithub.com/codespell-project/codespell/pull/3213)
- don't show stacktrace from KeyboardInterrupt
[#&#8203;3217](https://togithub.com/codespell-project/codespell/issues/3217)
by [@&#8203;jcubic](https://togithub.com/jcubic) in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- Adding 'hareware' to spelling corrections. by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- Add typos for knownledge->knowledge, analyzis->analysis and
compialtion->compilation by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3222](https://togithub.com/codespell-project/codespell/pull/3222)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3228](https://togithub.com/codespell-project/codespell/pull/3228)
- Add --stdin-single-line option by
[@&#8203;Jendker](https://togithub.com/Jendker) in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- Add spelling corrections for parameters by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3230](https://togithub.com/codespell-project/codespell/pull/3230)
- Ignore line endings in exclude-file by
[@&#8203;Jackenmen](https://togithub.com/Jackenmen) in
[https://github.com/codespell-project/codespell/pull/1889](https://togithub.com/codespell-project/codespell/pull/1889)
- Add typo offsers by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3232](https://togithub.com/codespell-project/codespell/pull/3232)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3235](https://togithub.com/codespell-project/codespell/pull/3235)
- Process files in sorted rather than arbitrary order by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3234](https://togithub.com/codespell-project/codespell/pull/3234)
- Add refinement to 'remore' typo by
[@&#8203;luzpaz](https://togithub.com/luzpaz) in
[https://github.com/codespell-project/codespell/pull/3236](https://togithub.com/codespell-project/codespell/pull/3236)
- chore(license): update to use spdx id by
[@&#8203;chenrui333](https://togithub.com/chenrui333) in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- Materials science related corrections by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3237](https://togithub.com/codespell-project/codespell/pull/3237)
- Add spelling corrections for vulnerability and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3239](https://togithub.com/codespell-project/codespell/pull/3239)
- Bump actions/setup-python from 4 to 5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3240](https://togithub.com/codespell-project/codespell/pull/3240)
- add velcoity -> velocity by
[@&#8203;zingale](https://togithub.com/zingale) in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- black → ruff format by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3242](https://togithub.com/codespell-project/codespell/pull/3242)
- ot is a typo also for it, which i is close to o by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3247](https://togithub.com/codespell-project/codespell/pull/3247)
- Apply a selection of refurb rules by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3244](https://togithub.com/codespell-project/codespell/pull/3244)
- Get rid of autoflake by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3250](https://togithub.com/codespell-project/codespell/pull/3250)
- Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3253](https://togithub.com/codespell-project/codespell/pull/3253)
- Bump actions/download-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3254](https://togithub.com/codespell-project/codespell/pull/3254)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3257](https://togithub.com/codespell-project/codespell/pull/3257)
- Add spelling correction for miltiple and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3255](https://togithub.com/codespell-project/codespell/pull/3255)
- Collection of typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3251](https://togithub.com/codespell-project/codespell/pull/3251)
- test: remove warning when aspell is not installed by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- Add carrets->carets by [@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3263](https://togithub.com/codespell-project/codespell/pull/3263)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3264](https://togithub.com/codespell-project/codespell/pull/3264)
- Add support for ANSI colors on Windows by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3259](https://togithub.com/codespell-project/codespell/pull/3259)
- Add prettier to pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3268](https://togithub.com/codespell-project/codespell/pull/3268)
- Apply Repo-Review suggestions by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3265](https://togithub.com/codespell-project/codespell/pull/3265)
- dictionary: pathes can be patches by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3273](https://togithub.com/codespell-project/codespell/pull/3273)
- fix: typos in comments by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- doc: Specify .codespellrc is INI formatted by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3271](https://togithub.com/codespell-project/codespell/pull/3271)
- Add sanetize->sanitize by
[@&#8203;sshane](https://togithub.com/sshane) in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- Case ignore by [@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3272](https://togithub.com/codespell-project/codespell/pull/3272)
- Fixed
[#&#8203;3278](https://togithub.com/codespell-project/codespell/issues/3278)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- dictionnary: persan can be persian. by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3282](https://togithub.com/codespell-project/codespell/pull/3282)
- Add validaiton->validation, valuation by
[@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3281](https://togithub.com/codespell-project/codespell/pull/3281)
- Consistent title case capitalisation by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3286](https://togithub.com/codespell-project/codespell/pull/3286)
- Updated dictionary for
[#&#8203;2411](https://togithub.com/codespell-project/codespell/issues/2411)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3280](https://togithub.com/codespell-project/codespell/pull/3280)
- dict: falt can be fault or flat by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3289](https://togithub.com/codespell-project/codespell/pull/3289)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3291](https://togithub.com/codespell-project/codespell/pull/3291)
- Add acquistion->acquisition by
[@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- Adding fixes for recommond and recommonded by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3292](https://togithub.com/codespell-project/codespell/pull/3292)
- Add tox.ini file by [@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3269](https://togithub.com/codespell-project/codespell/pull/3269)
- Fixed
[#&#8203;3297](https://togithub.com/codespell-project/codespell/issues/3297)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3298](https://togithub.com/codespell-project/codespell/pull/3298)
- Enable lists in TOML config file by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3294](https://togithub.com/codespell-project/codespell/pull/3294)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3162](https://togithub.com/codespell-project/codespell/pull/3162)
- Fixed
[#&#8203;3301](https://togithub.com/codespell-project/codespell/issues/3301)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3302](https://togithub.com/codespell-project/codespell/pull/3302)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3303](https://togithub.com/codespell-project/codespell/pull/3303)
- Materials science related corrections 2 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3295](https://togithub.com/codespell-project/codespell/pull/3295)
- Add spelling corrections for sphere by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3304](https://togithub.com/codespell-project/codespell/pull/3304)
- Makes config for "count" more clear as a boolean by
[@&#8203;amarvin](https://togithub.com/amarvin) in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- quanitization -> quantization by
[@&#8203;claydugo](https://togithub.com/claydugo) in
[https://github.com/codespell-project/codespell/pull/3308](https://togithub.com/codespell-project/codespell/pull/3308)
- instroment->instrument by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3309](https://togithub.com/codespell-project/codespell/pull/3309)
- Add updadated->updated and uneared->unearned by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3310](https://togithub.com/codespell-project/codespell/pull/3310)
- initiase -> initialise by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3343](https://togithub.com/codespell-project/codespell/pull/3343)
- Adding correction for furance->furnace by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3347](https://togithub.com/codespell-project/codespell/pull/3347)
- Bump codecov/codecov-action from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3348](https://togithub.com/codespell-project/codespell/pull/3348)
- dict: disagreement by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3351](https://togithub.com/codespell-project/codespell/pull/3351)
- dict: False/true typos by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3350](https://togithub.com/codespell-project/codespell/pull/3350)
- sampe->sample by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3354](https://togithub.com/codespell-project/codespell/pull/3354)
- Multiple spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3349](https://togithub.com/codespell-project/codespell/pull/3349)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3352](https://togithub.com/codespell-project/codespell/pull/3352)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3357](https://togithub.com/codespell-project/codespell/pull/3357)
- Fix "dubious ownership" error in dev containers by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3361](https://togithub.com/codespell-project/codespell/pull/3361)
- Assorted mispellings by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3360](https://togithub.com/codespell-project/codespell/pull/3360)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3364](https://togithub.com/codespell-project/codespell/pull/3364)
- Add metadataa typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3368](https://togithub.com/codespell-project/codespell/pull/3368)
- Add corrections for all \*in->\*ing words starting with "A" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3336](https://togithub.com/codespell-project/codespell/pull/3336)
- Add corrections for all \*in->\*ing words starting with "B" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3312](https://togithub.com/codespell-project/codespell/pull/3312)
- Add corrections for all \*in->\*ing words starting with "C" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3314](https://togithub.com/codespell-project/codespell/pull/3314)
- editible->editable by
[@&#8203;skshetry](https://togithub.com/skshetry) in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- Add corrections for all \*in->\*ing words starting with "D" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3319](https://togithub.com/codespell-project/codespell/pull/3319)
- Add corrections for all \*in->\*ing words starting with "E" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3318](https://togithub.com/codespell-project/codespell/pull/3318)
- Add corrections for all \*in->\*ing words starting with "F" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3330](https://togithub.com/codespell-project/codespell/pull/3330)
- Add correction for spoofing and spoofed. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3370](https://togithub.com/codespell-project/codespell/pull/3370)
- Add reliabe->reliable by
[@&#8203;adamscott](https://togithub.com/adamscott) in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- Add corrections for all \*in->\*ing words starting with "G" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3325](https://togithub.com/codespell-project/codespell/pull/3325)
- Add corrections for all \*in->\*ing words starting with "H" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3315](https://togithub.com/codespell-project/codespell/pull/3315)
- Add corrections for all \*in->\*ing words starting with "I" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3329](https://togithub.com/codespell-project/codespell/pull/3329)
- Add corrections for all \*in->\*ing words starting with "J" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3331](https://togithub.com/codespell-project/codespell/pull/3331)
- Add corrections for all \*in->\*ing words starting with "K" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3332](https://togithub.com/codespell-project/codespell/pull/3332)
- Add corrections for all \*in->\*ing words starting with "L" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3326](https://togithub.com/codespell-project/codespell/pull/3326)
- Add corrections for all \*in->\*ing words starting with "M" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3317](https://togithub.com/codespell-project/codespell/pull/3317)
- Add corrections for all \*in->\*ing words starting with "N" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3320](https://togithub.com/codespell-project/codespell/pull/3320)
- Add corrections for all \*in->\*ing words starting with "O" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3313](https://togithub.com/codespell-project/codespell/pull/3313)
- Move focusin to code by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3373](https://togithub.com/codespell-project/codespell/pull/3373)
- Add filaname->filename by
[@&#8203;cjwatson](https://togithub.com/cjwatson) in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- Add corrections for all \*in->\*ing words starting with "R" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3324](https://togithub.com/codespell-project/codespell/pull/3324)
- Add corrections for all \*in->\*ing words starting with "S" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3316](https://togithub.com/codespell-project/codespell/pull/3316)
- Add corrections for all \*in->\*ing words starting with "P" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3322](https://togithub.com/codespell-project/codespell/pull/3322)
- Add corrections for all \*in->\*ing words starting with "Q" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3333](https://togithub.com/codespell-project/codespell/pull/3333)
- Add corrections for all \*in->\*ing words starting with "T" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3328](https://togithub.com/codespell-project/codespell/pull/3328)
- Add corrections for all \*in->\*ing words starting with "U" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3321](https://togithub.com/codespell-project/codespell/pull/3321)
- Add corrections for all \*in->\*ing words starting with "V" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3327](https://togithub.com/codespell-project/codespell/pull/3327)
- Add corrections for all \*in->\*ing words starting with "W" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3323](https://togithub.com/codespell-project/codespell/pull/3323)
- Add corrections for all \*in->\*ing words starting with "Y" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3334](https://togithub.com/codespell-project/codespell/pull/3334)
- Add corrections for all \*in->\*ing words starting with "Z" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3335](https://togithub.com/codespell-project/codespell/pull/3335)
- Add 'quotted->quoted' by
[@&#8203;sirosen](https://togithub.com/sirosen) in
[https://github.com/codespell-project/codespell/pull/3374](https://togithub.com/codespell-project/codespell/pull/3374)
- Remove reoccurrence from the dictionary.txt -- LGTM and popular word
by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3378](https://togithub.com/codespell-project/codespell/pull/3378)
- Add typos for expration(s) by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3377](https://togithub.com/codespell-project/codespell/pull/3377)
- Implement inline ignores by
[@&#8203;kaste](https://togithub.com/kaste) in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- Add softwrae typo fix by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3383](https://togithub.com/codespell-project/codespell/pull/3383)
- Add spelling corrections for morphology by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3379](https://togithub.com/codespell-project/codespell/pull/3379)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3382](https://togithub.com/codespell-project/codespell/pull/3382)
- Several spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3386](https://togithub.com/codespell-project/codespell/pull/3386)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3389](https://togithub.com/codespell-project/codespell/pull/3389)
- Add 'repeatition->repetition' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3388](https://togithub.com/codespell-project/codespell/pull/3388)
- Add labael->label and variants by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3384](https://togithub.com/codespell-project/codespell/pull/3384)
- docs: add the documentation of the new inline ignore comments by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- Add reposiroty->repository by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3393](https://togithub.com/codespell-project/codespell/pull/3393)
- Adding communicationg->communicating by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3394](https://togithub.com/codespell-project/codespell/pull/3394)
- Add 'croporate->corporate', 'incroporate->incorporate' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3395](https://togithub.com/codespell-project/codespell/pull/3395)
- docs: indentation error by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3392](https://togithub.com/codespell-project/codespell/pull/3392)
- More typos from Wikipedia by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3363](https://togithub.com/codespell-project/codespell/pull/3363)
- Add compatiblility / configurated by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3161](https://togithub.com/codespell-project/codespell/pull/3161)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3398](https://togithub.com/codespell-project/codespell/pull/3398)
- Handle multiline options by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3400](https://togithub.com/codespell-project/codespell/pull/3400)
- docs: just `codespell:ignore` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3397](https://togithub.com/codespell-project/codespell/pull/3397)
- Add `aftewards` misspelling by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3403](https://togithub.com/codespell-project/codespell/pull/3403)
- Add correction for trasversal and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3405](https://togithub.com/codespell-project/codespell/pull/3405)
- A few mispellings for the dictionnary by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3404](https://togithub.com/codespell-project/codespell/pull/3404)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3406](https://togithub.com/codespell-project/codespell/pull/3406)
- Options that expect a file, should accept lists of files too by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/2767](https://togithub.com/codespell-project/codespell/pull/2767)
- Add spelling correction for specialiaze/specialiase and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3409](https://togithub.com/codespell-project/codespell/pull/3409)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3411](https://togithub.com/codespell-project/codespell/pull/3411)
- Add statestics typo (github has over 300 hits) by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3412](https://togithub.com/codespell-project/codespell/pull/3412)
- nueroimaging typo (13 hits on github) -- domain specific but no doubt
wrong! by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3413](https://togithub.com/codespell-project/codespell/pull/3413)
- Added minor typos by [@&#8203;matlupi](https://togithub.com/matlupi)
in
[https://github.com/codespell-project/codespell/pull/3410](https://togithub.com/codespell-project/codespell/pull/3410)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3415](https://togithub.com/codespell-project/codespell/pull/3415)
- Add netflify typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3417](https://togithub.com/codespell-project/codespell/pull/3417)
- insstance typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every 3 months on the first day of
the month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/AlexWaygood/typeshed-stats).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Waygood <[email protected]>
welpaolo referenced this pull request in canonical/spark-k8s-toolkit-py Jul 4, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [black](https://togithub.com/psf/black)
([changelog](https://togithub.com/psf/black/blob/main/CHANGES.md)) |
`24.4.0` -> `24.4.2` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/black/24.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/black/24.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/black/24.4.0/24.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/black/24.4.0/24.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [certifi](https://togithub.com/certifi/python-certifi) | `==2024.6.2`
-> `==2024.7.4` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/certifi/2024.7.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/certifi/2024.7.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/certifi/2024.6.2/2024.7.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/certifi/2024.6.2/2024.7.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [codespell](https://togithub.com/codespell-project/codespell) |
`2.2.6` -> `2.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/codespell/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/codespell/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/codespell/2.2.6/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/codespell/2.2.6/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [exceptiongroup](https://togithub.com/agronholm/exceptiongroup)
([changelog](https://togithub.com/agronholm/exceptiongroup/blob/main/CHANGES.rst))
| `==1.1.1` -> `==1.2.1` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/exceptiongroup/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/exceptiongroup/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/exceptiongroup/1.1.1/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/exceptiongroup/1.1.1/1.2.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [httpx](https://togithub.com/encode/httpx)
([changelog](https://togithub.com/encode/httpx/blob/master/CHANGELOG.md))
| `==0.24.1` -> `==0.27.0` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/httpx/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/httpx/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/httpx/0.24.1/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/httpx/0.24.1/0.27.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [lightkube](https://togithub.com/gtsystem/lightkube) | `0.15.2` ->
`0.15.3` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/lightkube/0.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/lightkube/0.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/lightkube/0.15.2/0.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/lightkube/0.15.2/0.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [lightkube](https://togithub.com/gtsystem/lightkube) | `==0.15.2` ->
`==0.15.3` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/lightkube/0.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/lightkube/0.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/lightkube/0.15.2/0.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/lightkube/0.15.2/0.15.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [lightkube-models](https://togithub.com/gtsystem/lightkube-models) |
`==1.27.1.4` -> `==1.30.0.8` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/lightkube-models/1.30.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/lightkube-models/1.30.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/lightkube-models/1.27.1.4/1.30.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/lightkube-models/1.27.1.4/1.30.0.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [markupsafe](https://palletsprojects.com/p/markupsafe/)
([changelog](https://markupsafe.palletsprojects.com/changes/)) |
`==2.1.3` -> `==2.1.5` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/markupsafe/2.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/markupsafe/2.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/markupsafe/2.1.3/2.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/markupsafe/2.1.3/2.1.5?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [mypy](https://www.mypy-lang.org/)
([source](https://togithub.com/python/mypy),
[changelog](https://mypy-lang.blogspot.com/)) | `1.9.0` -> `1.10.1` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/mypy/1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/mypy/1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/mypy/1.9.0/1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/mypy/1.9.0/1.10.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [pytest](https://togithub.com/pytest-dev/pytest)
([changelog](https://docs.pytest.org/en/stable/changelog.html)) |
`8.1.1` -> `8.2.2` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/pytest/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/pytest/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/pytest/8.1.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pytest/8.1.1/8.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [pyyaml](https://pyyaml.org/)
([source](https://togithub.com/yaml/pyyaml)) | `==6.0` -> `==6.0.1` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/pyyaml/6.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/pyyaml/6.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/pyyaml/6.0/6.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/pyyaml/6.0/6.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [sniffio](https://togithub.com/python-trio/sniffio)
([changelog](https://sniffio.readthedocs.io/en/latest/history.html)) |
`==1.3.0` -> `==1.3.1` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/sniffio/1.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/sniffio/1.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/sniffio/1.3.0/1.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/sniffio/1.3.0/1.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [tox](https://togithub.com/tox-dev/tox)
([changelog](https://tox.wiki/en/latest/changelog.html)) | `4.14.2` ->
`4.16.0` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/tox/4.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/tox/4.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/tox/4.14.2/4.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/tox/4.14.2/4.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>psf/black (black)</summary>

###
[`v24.4.2`](https://togithub.com/psf/black/blob/HEAD/CHANGES.md#2442)

[Compare Source](https://togithub.com/psf/black/compare/24.4.1...24.4.2)

This is a bugfix release to fix two regressions in the new f-string
parser introduced in
24.4.1.

##### Parser

- Fix regression where certain complex f-strings failed to parse
([#&#8203;4332](https://togithub.com/psf/black/issues/4332))

##### Performance

- Fix bad performance on certain complex string literals
([#&#8203;4331](https://togithub.com/psf/black/issues/4331))

###
[`v24.4.1`](https://togithub.com/psf/black/blob/HEAD/CHANGES.md#2441)

[Compare Source](https://togithub.com/psf/black/compare/24.4.0...24.4.1)

##### Highlights

- Add support for the new Python 3.12 f-string syntax introduced by PEP
701 ([#&#8203;3822](https://togithub.com/psf/black/issues/3822))

##### Stable style

- Fix crash involving indented dummy functions containing newlines
([#&#8203;4318](https://togithub.com/psf/black/issues/4318))

##### Parser

- Add support for type parameter defaults, a new syntactic feature added
to Python 3.13
by PEP 696 ([#&#8203;4327](https://togithub.com/psf/black/issues/4327))

##### Integrations

- Github Action now works even when `git archive` is skipped
([#&#8203;4313](https://togithub.com/psf/black/issues/4313))

</details>

<details>
<summary>certifi/python-certifi (certifi)</summary>

###
[`v2024.7.4`](https://togithub.com/certifi/python-certifi/compare/2024.06.02...2024.07.04)

[Compare
Source](https://togithub.com/certifi/python-certifi/compare/2024.06.02...2024.07.04)

</details>

<details>
<summary>codespell-project/codespell (codespell)</summary>

###
[`v2.3.0`](https://togithub.com/codespell-project/codespell/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/codespell-project/codespell/compare/v2.2.6...v2.3.0)

#### What's Changed

- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3115](https://togithub.com/codespell-project/codespell/pull/3115)
- Add schematrion->schematron by
[@&#8203;AirQuick](https://togithub.com/AirQuick) in
[https://github.com/codespell-project/codespell/pull/3116](https://togithub.com/codespell-project/codespell/pull/3116)
- Add explicit Python 3.12 support by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3121](https://togithub.com/codespell-project/codespell/pull/3121)
- Add miscellaneous typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3117](https://togithub.com/codespell-project/codespell/pull/3117)
- fix: aesthetic(s) should be kept as is by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- Add more labour\* variants by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3128](https://togithub.com/codespell-project/codespell/pull/3128)
- Add additional spelling corrections for prior and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3135](https://togithub.com/codespell-project/codespell/pull/3135)
- Fix `no-commit-to-branch` Pre-Commit check by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3130](https://togithub.com/codespell-project/codespell/pull/3130)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3131](https://togithub.com/codespell-project/codespell/pull/3131)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3155](https://togithub.com/codespell-project/codespell/pull/3155)
- Return exit status in **main**.py by
[@&#8203;szepeviktor](https://togithub.com/szepeviktor) in
[https://github.com/codespell-project/codespell/pull/3157](https://togithub.com/codespell-project/codespell/pull/3157)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3158](https://togithub.com/codespell-project/codespell/pull/3158)
- Added new word by
[@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- `dictionary.txt` additions by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3149](https://togithub.com/codespell-project/codespell/pull/3149)
- Add Gelma's typos that start with "a" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3150](https://togithub.com/codespell-project/codespell/pull/3150)
- Add Gelma's typos from "b" to "cl" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3163](https://togithub.com/codespell-project/codespell/pull/3163)
- Add some academies typos by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3173](https://togithub.com/codespell-project/codespell/pull/3173)
- Add Gelma's typos from "co" to "cy" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3167](https://togithub.com/codespell-project/codespell/pull/3167)
- Add Gelma's typos that start with "d" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3168](https://togithub.com/codespell-project/codespell/pull/3168)
- Refactor code using `encodings` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3172](https://togithub.com/codespell-project/codespell/pull/3172)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3176](https://togithub.com/codespell-project/codespell/pull/3176)
- Add Gelma's typos that start with "e" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3174](https://togithub.com/codespell-project/codespell/pull/3174)
- Add Gelma's typos from "f" to "h" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3175](https://togithub.com/codespell-project/codespell/pull/3175)
- Add alwats->always correction. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3178](https://togithub.com/codespell-project/codespell/pull/3178)
- Add obsloete->obsolete and friend by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3019](https://togithub.com/codespell-project/codespell/pull/3019)
- Add entries to rare dictionary by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3179](https://togithub.com/codespell-project/codespell/pull/3179)
- Add Gelma's typos that start with "i" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3177](https://togithub.com/codespell-project/codespell/pull/3177)
- diagional -> diagonal by
[@&#8203;tkoyama010](https://togithub.com/tkoyama010) in
[https://github.com/codespell-project/codespell/pull/3183](https://togithub.com/codespell-project/codespell/pull/3183)
- Add Gelma's typos from "j" to "m" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3180](https://togithub.com/codespell-project/codespell/pull/3180)
- Add Gelma's typos from "n" to "o" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3182](https://togithub.com/codespell-project/codespell/pull/3182)
- Add corrections for vulnerbailit(y|ies)->vulnerabilit(y|ies). by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3185](https://togithub.com/codespell-project/codespell/pull/3185)
- Add Gelma's typos that start with "p" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3184](https://togithub.com/codespell-project/codespell/pull/3184)
- Add Gelma's typos from "q" to "r" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3186](https://togithub.com/codespell-project/codespell/pull/3186)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3193](https://togithub.com/codespell-project/codespell/pull/3193)
- openign->opening by [@&#8203;claydugo](https://togithub.com/claydugo)
in
[https://github.com/codespell-project/codespell/pull/3194](https://togithub.com/codespell-project/codespell/pull/3194)
- Add Gelma's typos that start with "s" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3187](https://togithub.com/codespell-project/codespell/pull/3187)
- Add spelling corrections for evaluate by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3195](https://togithub.com/codespell-project/codespell/pull/3195)
- Add Gelma's typos from "t" to "z" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3188](https://togithub.com/codespell-project/codespell/pull/3188)
- Dict update by [@&#8203;macpijan](https://togithub.com/macpijan) in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- Improve existing suggestions by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3200](https://togithub.com/codespell-project/codespell/pull/3200)
- Add a timeout to jobs that may benefit from it by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3199](https://togithub.com/codespell-project/codespell/pull/3199)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3201](https://togithub.com/codespell-project/codespell/pull/3201)
- Unify multiple identities of luzpuz and Dimitri by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3205](https://togithub.com/codespell-project/codespell/pull/3205)
- Ignore personal names Damon and Manuel by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3214](https://togithub.com/codespell-project/codespell/pull/3214)
- Ignore ill-formed INI files instead of crashing by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3213](https://togithub.com/codespell-project/codespell/pull/3213)
- don't show stacktrace from KeyboardInterrupt
[#&#8203;3217](https://togithub.com/codespell-project/codespell/issues/3217)
by [@&#8203;jcubic](https://togithub.com/jcubic) in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- Adding 'hareware' to spelling corrections. by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- Add typos for knownledge->knowledge, analyzis->analysis and
compialtion->compilation by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3222](https://togithub.com/codespell-project/codespell/pull/3222)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3228](https://togithub.com/codespell-project/codespell/pull/3228)
- Add --stdin-single-line option by
[@&#8203;Jendker](https://togithub.com/Jendker) in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- Add spelling corrections for parameters by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3230](https://togithub.com/codespell-project/codespell/pull/3230)
- Ignore line endings in exclude-file by
[@&#8203;Jackenmen](https://togithub.com/Jackenmen) in
[https://github.com/codespell-project/codespell/pull/1889](https://togithub.com/codespell-project/codespell/pull/1889)
- Add typo offsers by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3232](https://togithub.com/codespell-project/codespell/pull/3232)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3235](https://togithub.com/codespell-project/codespell/pull/3235)
- Process files in sorted rather than arbitrary order by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3234](https://togithub.com/codespell-project/codespell/pull/3234)
- Add refinement to 'remore' typo by
[@&#8203;luzpaz](https://togithub.com/luzpaz) in
[https://github.com/codespell-project/codespell/pull/3236](https://togithub.com/codespell-project/codespell/pull/3236)
- chore(license): update to use spdx id by
[@&#8203;chenrui333](https://togithub.com/chenrui333) in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- Materials science related corrections by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3237](https://togithub.com/codespell-project/codespell/pull/3237)
- Add spelling corrections for vulnerability and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3239](https://togithub.com/codespell-project/codespell/pull/3239)
- Bump actions/setup-python from 4 to 5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3240](https://togithub.com/codespell-project/codespell/pull/3240)
- add velcoity -> velocity by
[@&#8203;zingale](https://togithub.com/zingale) in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- black → ruff format by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3242](https://togithub.com/codespell-project/codespell/pull/3242)
- ot is a typo also for it, which i is close to o by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3247](https://togithub.com/codespell-project/codespell/pull/3247)
- Apply a selection of refurb rules by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3244](https://togithub.com/codespell-project/codespell/pull/3244)
- Get rid of autoflake by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3250](https://togithub.com/codespell-project/codespell/pull/3250)
- Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3253](https://togithub.com/codespell-project/codespell/pull/3253)
- Bump actions/download-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3254](https://togithub.com/codespell-project/codespell/pull/3254)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3257](https://togithub.com/codespell-project/codespell/pull/3257)
- Add spelling correction for miltiple and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3255](https://togithub.com/codespell-project/codespell/pull/3255)
- Collection of typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3251](https://togithub.com/codespell-project/codespell/pull/3251)
- test: remove warning when aspell is not installed by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- Add carrets->carets by [@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3263](https://togithub.com/codespell-project/codespell/pull/3263)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3264](https://togithub.com/codespell-project/codespell/pull/3264)
- Add support for ANSI colors on Windows by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3259](https://togithub.com/codespell-project/codespell/pull/3259)
- Add prettier to pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3268](https://togithub.com/codespell-project/codespell/pull/3268)
- Apply Repo-Review suggestions by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3265](https://togithub.com/codespell-project/codespell/pull/3265)
- dictionary: pathes can be patches by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3273](https://togithub.com/codespell-project/codespell/pull/3273)
- fix: typos in comments by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- doc: Specify .codespellrc is INI formatted by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3271](https://togithub.com/codespell-project/codespell/pull/3271)
- Add sanetize->sanitize by
[@&#8203;sshane](https://togithub.com/sshane) in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- Case ignore by [@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3272](https://togithub.com/codespell-project/codespell/pull/3272)
- Fixed
[#&#8203;3278](https://togithub.com/codespell-project/codespell/issues/3278)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- dictionnary: persan can be persian. by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3282](https://togithub.com/codespell-project/codespell/pull/3282)
- Add validaiton->validation, valuation by
[@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3281](https://togithub.com/codespell-project/codespell/pull/3281)
- Consistent title case capitalisation by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3286](https://togithub.com/codespell-project/codespell/pull/3286)
- Updated dictionary for
[#&#8203;2411](https://togithub.com/codespell-project/codespell/issues/2411)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3280](https://togithub.com/codespell-project/codespell/pull/3280)
- dict: falt can be fault or flat by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3289](https://togithub.com/codespell-project/codespell/pull/3289)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3291](https://togithub.com/codespell-project/codespell/pull/3291)
- Add acquistion->acquisition by
[@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- Adding fixes for recommond and recommonded by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3292](https://togithub.com/codespell-project/codespell/pull/3292)
- Add tox.ini file by [@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3269](https://togithub.com/codespell-project/codespell/pull/3269)
- Fixed
[#&#8203;3297](https://togithub.com/codespell-project/codespell/issues/3297)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3298](https://togithub.com/codespell-project/codespell/pull/3298)
- Enable lists in TOML config file by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3294](https://togithub.com/codespell-project/codespell/pull/3294)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3162](https://togithub.com/codespell-project/codespell/pull/3162)
- Fixed
[#&#8203;3301](https://togithub.com/codespell-project/codespell/issues/3301)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3302](https://togithub.com/codespell-project/codespell/pull/3302)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3303](https://togithub.com/codespell-project/codespell/pull/3303)
- Materials science related corrections 2 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3295](https://togithub.com/codespell-project/codespell/pull/3295)
- Add spelling corrections for sphere by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3304](https://togithub.com/codespell-project/codespell/pull/3304)
- Makes config for "count" more clear as a boolean by
[@&#8203;amarvin](https://togithub.com/amarvin) in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- quanitization -> quantization by
[@&#8203;claydugo](https://togithub.com/claydugo) in
[https://github.com/codespell-project/codespell/pull/3308](https://togithub.com/codespell-project/codespell/pull/3308)
- instroment->instrument by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3309](https://togithub.com/codespell-project/codespell/pull/3309)
- Add updadated->updated and uneared->unearned by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3310](https://togithub.com/codespell-project/codespell/pull/3310)
- initiase -> initialise by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3343](https://togithub.com/codespell-project/codespell/pull/3343)
- Adding correction for furance->furnace by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3347](https://togithub.com/codespell-project/codespell/pull/3347)
- Bump codecov/codecov-action from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3348](https://togithub.com/codespell-project/codespell/pull/3348)
- dict: disagreement by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3351](https://togithub.com/codespell-project/codespell/pull/3351)
- dict: False/true typos by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3350](https://togithub.com/codespell-project/codespell/pull/3350)
- sampe->sample by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3354](https://togithub.com/codespell-project/codespell/pull/3354)
- Multiple spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3349](https://togithub.com/codespell-project/codespell/pull/3349)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3352](https://togithub.com/codespell-project/codespell/pull/3352)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3357](https://togithub.com/codespell-project/codespell/pull/3357)
- Fix "dubious ownership" error in dev containers by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3361](https://togithub.com/codespell-project/codespell/pull/3361)
- Assorted mispellings by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3360](https://togithub.com/codespell-project/codespell/pull/3360)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3364](https://togithub.com/codespell-project/codespell/pull/3364)
- Add metadataa typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3368](https://togithub.com/codespell-project/codespell/pull/3368)
- Add corrections for all \*in->\*ing words starting with "A" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3336](https://togithub.com/codespell-project/codespell/pull/3336)
- Add corrections for all \*in->\*ing words starting with "B" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3312](https://togithub.com/codespell-project/codespell/pull/3312)
- Add corrections for all \*in->\*ing words starting with "C" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3314](https://togithub.com/codespell-project/codespell/pull/3314)
- editible->editable by
[@&#8203;skshetry](https://togithub.com/skshetry) in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- Add corrections for all \*in->\*ing words starting with "D" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3319](https://togithub.com/codespell-project/codespell/pull/3319)
- Add corrections for all \*in->\*ing words starting with "E" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3318](https://togithub.com/codespell-project/codespell/pull/3318)
- Add corrections for all \*in->\*ing words starting with "F" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3330](https://togithub.com/codespell-project/codespell/pull/3330)
- Add correction for spoofing and spoofed. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3370](https://togithub.com/codespell-project/codespell/pull/3370)
- Add reliabe->reliable by
[@&#8203;adamscott](https://togithub.com/adamscott) in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- Add corrections for all \*in->\*ing words starting with "G" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3325](https://togithub.com/codespell-project/codespell/pull/3325)
- Add corrections for all \*in->\*ing words starting with "H" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3315](https://togithub.com/codespell-project/codespell/pull/3315)
- Add corrections for all \*in->\*ing words starting with "I" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3329](https://togithub.com/codespell-project/codespell/pull/3329)
- Add corrections for all \*in->\*ing words starting with "J" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3331](https://togithub.com/codespell-project/codespell/pull/3331)
- Add corrections for all \*in->\*ing words starting with "K" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3332](https://togithub.com/codespell-project/codespell/pull/3332)
- Add corrections for all \*in->\*ing words starting with "L" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3326](https://togithub.com/codespell-project/codespell/pull/3326)
- Add corrections for all \*in->\*ing words starting with "M" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3317](https://togithub.com/codespell-project/codespell/pull/3317)
- Add corrections for all \*in->\*ing words starting with "N" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3320](https://togithub.com/codespell-project/codespell/pull/3320)
- Add corrections for all \*in->\*ing words starting with "O" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3313](https://togithub.com/codespell-project/codespell/pull/3313)
- Move focusin to code by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3373](https://togithub.com/codespell-project/codespell/pull/3373)
- Add filaname->filename by
[@&#8203;cjwatson](https://togithub.com/cjwatson) in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- Add corrections for all \*in->\*ing words starting with "R" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3324](https://togithub.com/codespell-project/codespell/pull/3324)
- Add corrections for all \*in->\*ing words starting with "S" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3316](https://togithub.com/codespell-project/codespell/pull/3316)
- Add corrections for all \*in->\*ing words starting with "P" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3322](https://togithub.com/codespell-project/codespell/pull/3322)
- Add corrections for all \*in->\*ing words starting with "Q" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3333](https://togithub.com/codespell-project/codespell/pull/3333)
- Add corrections for all \*in->\*ing words starting with "T" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3328](https://togithub.com/codespell-project/codespell/pull/3328)
- Add corrections for all \*in->\*ing words starting with "U" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3321](https://togithub.com/codespell-project/codespell/pull/3321)
- Add corrections for all \*in->\*ing words starting with "V" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3327](https://togithub.com/codespell-project/codespell/pull/3327)
- Add corrections for all \*in->\*ing words starting with "W" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3323](https://togithub.com/codespell-project/codespell/pull/3323)
- Add corrections for all \*in->\*ing words starting with "Y" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3334](https://togithub.com/codespell-project/codespell/pull/3334)
- Add corrections for all \*in->\*ing words starting with "Z" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3335](https://togithub.com/codespell-project/codespell/pull/3335)
- Add 'quotted->quoted' by
[@&#8203;sirosen](https://togithub.com/sirosen) in
[https://github.com/codespell-project/codespell/pull/3374](https://togithub.com/codespell-project/codespell/pull/3374)
- Remove reoccurrence from the dictionary.txt -- LGTM and popular word
by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3378](https://togithub.com/codespell-project/codespell/pull/3378)
- Add typos for expration(s) by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3377](https://togithub.com/codespell-project/codespell/pull/3377)
- Implement inline ignores by
[@&#8203;kaste](https://togithub.com/kaste) in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- Add softwrae typo fix by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3383](https://togithub.com/codespell-project/codespell/pull/3383)
- Add spelling corrections for morphology by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3379](https://togithub.com/codespell-project/codespell/pull/3379)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3382](https://togithub.com/codespell-project/codespell/pull/3382)
- Several spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3386](https://togithub.com/codespell-project/codespell/pull/3386)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3389](https://togithub.com/codespell-project/codespell/pull/3389)
- Add 'repeatition->repetition' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3388](https://togithub.com/codespell-project/codespell/pull/3388)
- Add labael->label and variants by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3384](https://togithub.com/codespell-project/codespell/pull/3384)
- docs: add the documentation of the new inline ignore comments by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- Add reposiroty->repository by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3393](https://togithub.com/codespell-project/codespell/pull/3393)
- Adding communicationg->communicating by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3394](https://togithub.com/codespell-project/codespell/pull/3394)
- Add 'croporate->corporate', 'incroporate->incorporate' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3395](https://togithub.com/codespell-project/codespell/pull/3395)
- docs: indentation error by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3392](https://togithub.com/codespell-project/codespell/pull/3392)
- More typos from Wikipedia by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3363](https://togithub.com/codespell-project/codespell/pull/3363)
- Add compatiblility / configurated by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3161](https://togithub.com/codespell-project/codespell/pull/3161)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3398](https://togithub.com/codespell-project/codespell/pull/3398)
- Handle multiline options by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3400](https://togithub.com/codespell-project/codespell/pull/3400)
- docs: just `codespell:ignore` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3397](https://togithub.com/codespell-project/codespell/pull/3397)
- Add `aftewards` misspelling by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3403](https://togithub.com/codespell-project/codespell/pull/3403)
- Add correction for trasversal and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3405](https://togithub.com/codespell-project/codespell/pull/3405)
- A few mispellings for the dictionnary by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3404](https://togithub.com/codespell-project/codespell/pull/3404)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3406](https://togithub.com/codespell-project/codespell/pull/3406)
- Options that expect a file, should accept lists of files too by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/2767](https://togithub.com/codespell-project/codespell/pull/2767)
- Add spelling correction for specialiaze/specialiase and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3409](https://togithub.com/codespell-project/codespell/pull/3409)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3411](https://togithub.com/codespell-project/codespell/pull/3411)
- Add statestics typo (github has over 300 hits) by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3412](https://togithub.com/codespell-project/codespell/pull/3412)
- nueroimaging typo (13 hits on github) -- domain specific but no doubt
wrong! by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3413](https://togithub.com/codespell-project/codespell/pull/3413)
- Added minor typos by [@&#8203;matlupi](https://togithub.com/matlupi)
in
[https://github.com/codespell-project/codespell/pull/3410](https://togithub.com/codespell-project/codespell/pull/3410)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3415](https://togithub.com/codespell-project/codespell/pull/3415)
- Add netflify typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3417](https://togithub.com/codespell-project/codespell/pull/3417)
- insstance typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3418](https://togithub.com/codespell-project/codespell/pull/3418)
- mian->main by [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo)
in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3420](https://togithub.com/codespell-project/codespell/pull/3420)
- Add coverage files to `.gitignore` by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3422](https://togithub.com/codespell-project/codespell/pull/3422)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3423](https://togithub.com/codespell-project/codespell/pull/3423)
- Add `arragne->arrange` typo by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3421](https://togithub.com/codespell-project/codespell/pull/3421)
- Materials science-related corrections 3 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3424](https://togithub.com/codespell-project/codespell/pull/3424)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3428](https://togithub.com/codespell-project/codespell/pull/3428)

#### New Contributors

- [@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- [@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- [@&#8203;macpijan](https://togithub.com/macpijan) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- [@&#8203;hugovk](https://togithub.com/hugovk) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- [@&#8203;jcubic](https://togithub.com/jcubic) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- [@&#8203;barndawgie](https://togithub.com/barndawgie) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- [@&#8203;Jendker](https://togithub.com/Jendker) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- [@&#8203;chenrui333](https://togithub.com/chenrui333) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- [@&#8203;zingale](https://togithub.com/zingale) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- [@&#8203;perillo](https://togithub.com/perillo) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- [@&#8203;vEnhance](https://togithub.com/vEnhance) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- [@&#8203;sshane](https://togithub.com/sshane) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- [@&#8203;matlupi](https://togithub.com/matlupi) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- [@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- [@&#8203;amarvin](https://togithub.com/amarvin) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- [@&#8203;skshetry](https://togithub.com/skshetry) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- [@&#8203;adamscott](https://togithub.com/adamscott) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- [@&#8203;cjwatson](https://togithub.com/cjwatson) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- [@&#8203;kaste](https://togithub.com/kaste) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- [@&#8203;12rambau](https://togithub.com/12rambau) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)

**Full Changelog**:
https://github.com/codespell-project/codespell/compare/v2.2.6...v2.3.0

</details>

<details>
<summary>agronholm/exceptiongroup (exceptiongroup)</summary>

###
[`v1.2.1`](https://togithub.com/agronholm/exceptiongroup/releases/tag/1.2.1)

[Compare
Source](https://togithub.com/agronholm/exceptiongroup/compare/1.2.0...1.2.1)

- Updated the copying of `__notes__` to match CPython behavior (PR by CF
Bolz-Tereick)
- Corrected the type annotation of the exception handler callback to
accept a `BaseExceptionGroup` instead of `BaseException`
- Fixed type errors on Python < 3.10 and the type annotation of
`suppress()` (PR by John Litborn)

###
[`v1.2.0`](https://togithub.com/agronholm/exceptiongroup/releases/tag/1.2.0)

[Compare Source](https://togithub.com/agronho

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 1am and before 2am on saturday"
in timezone Etc/UTC, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/canonical/spark-k8s-toolkit-py).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjAuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQyMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jooola referenced this pull request in jooola/earhorn Aug 11, 2024
….3.0 (#272)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[codespell-project/codespell](https://togithub.com/codespell-project/codespell)
| repository | minor | `v2.2.6` -> `v2.3.0` |

Note: The `pre-commit` manager in Renovate is not supported by the
`pre-commit` maintainers or community. Please do not report any problems
there, instead [create a Discussion in the Renovate
repository](https://togithub.com/renovatebot/renovate/discussions/new)
if you have any questions.

---

### Release Notes

<details>
<summary>codespell-project/codespell
(codespell-project/codespell)</summary>

###
[`v2.3.0`](https://togithub.com/codespell-project/codespell/releases/tag/v2.3.0)

[Compare
Source](https://togithub.com/codespell-project/codespell/compare/v2.2.6...v2.3.0)

#### What's Changed

- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3115](https://togithub.com/codespell-project/codespell/pull/3115)
- Add schematrion->schematron by
[@&#8203;AirQuick](https://togithub.com/AirQuick) in
[https://github.com/codespell-project/codespell/pull/3116](https://togithub.com/codespell-project/codespell/pull/3116)
- Add explicit Python 3.12 support by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3121](https://togithub.com/codespell-project/codespell/pull/3121)
- Add miscellaneous typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3117](https://togithub.com/codespell-project/codespell/pull/3117)
- fix: aesthetic(s) should be kept as is by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- Add more labour\* variants by
[@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) in
[https://github.com/codespell-project/codespell/pull/3128](https://togithub.com/codespell-project/codespell/pull/3128)
- Add additional spelling corrections for prior and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3135](https://togithub.com/codespell-project/codespell/pull/3135)
- Fix `no-commit-to-branch` Pre-Commit check by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3130](https://togithub.com/codespell-project/codespell/pull/3130)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3131](https://togithub.com/codespell-project/codespell/pull/3131)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3155](https://togithub.com/codespell-project/codespell/pull/3155)
- Return exit status in **main**.py by
[@&#8203;szepeviktor](https://togithub.com/szepeviktor) in
[https://github.com/codespell-project/codespell/pull/3157](https://togithub.com/codespell-project/codespell/pull/3157)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3158](https://togithub.com/codespell-project/codespell/pull/3158)
- Added new word by
[@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- `dictionary.txt` additions by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3149](https://togithub.com/codespell-project/codespell/pull/3149)
- Add Gelma's typos that start with "a" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3150](https://togithub.com/codespell-project/codespell/pull/3150)
- Add Gelma's typos from "b" to "cl" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3163](https://togithub.com/codespell-project/codespell/pull/3163)
- Add some academies typos by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3173](https://togithub.com/codespell-project/codespell/pull/3173)
- Add Gelma's typos from "co" to "cy" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3167](https://togithub.com/codespell-project/codespell/pull/3167)
- Add Gelma's typos that start with "d" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3168](https://togithub.com/codespell-project/codespell/pull/3168)
- Refactor code using `encodings` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3172](https://togithub.com/codespell-project/codespell/pull/3172)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3176](https://togithub.com/codespell-project/codespell/pull/3176)
- Add Gelma's typos that start with "e" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3174](https://togithub.com/codespell-project/codespell/pull/3174)
- Add Gelma's typos from "f" to "h" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3175](https://togithub.com/codespell-project/codespell/pull/3175)
- Add alwats->always correction. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3178](https://togithub.com/codespell-project/codespell/pull/3178)
- Add obsloete->obsolete and friend by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3019](https://togithub.com/codespell-project/codespell/pull/3019)
- Add entries to rare dictionary by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3179](https://togithub.com/codespell-project/codespell/pull/3179)
- Add Gelma's typos that start with "i" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3177](https://togithub.com/codespell-project/codespell/pull/3177)
- diagional -> diagonal by
[@&#8203;tkoyama010](https://togithub.com/tkoyama010) in
[https://github.com/codespell-project/codespell/pull/3183](https://togithub.com/codespell-project/codespell/pull/3183)
- Add Gelma's typos from "j" to "m" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3180](https://togithub.com/codespell-project/codespell/pull/3180)
- Add Gelma's typos from "n" to "o" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3182](https://togithub.com/codespell-project/codespell/pull/3182)
- Add corrections for vulnerbailit(y|ies)->vulnerabilit(y|ies). by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3185](https://togithub.com/codespell-project/codespell/pull/3185)
- Add Gelma's typos that start with "p" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3184](https://togithub.com/codespell-project/codespell/pull/3184)
- Add Gelma's typos from "q" to "r" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3186](https://togithub.com/codespell-project/codespell/pull/3186)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3193](https://togithub.com/codespell-project/codespell/pull/3193)
- openign->opening by [@&#8203;claydugo](https://togithub.com/claydugo)
in
[https://github.com/codespell-project/codespell/pull/3194](https://togithub.com/codespell-project/codespell/pull/3194)
- Add Gelma's typos that start with "s" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3187](https://togithub.com/codespell-project/codespell/pull/3187)
- Add spelling corrections for evaluate by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3195](https://togithub.com/codespell-project/codespell/pull/3195)
- Add Gelma's typos from "t" to "z" by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3188](https://togithub.com/codespell-project/codespell/pull/3188)
- Dict update by [@&#8203;macpijan](https://togithub.com/macpijan) in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- Improve existing suggestions by
[@&#8203;int-y1](https://togithub.com/int-y1) in
[https://github.com/codespell-project/codespell/pull/3200](https://togithub.com/codespell-project/codespell/pull/3200)
- Add a timeout to jobs that may benefit from it by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3199](https://togithub.com/codespell-project/codespell/pull/3199)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3201](https://togithub.com/codespell-project/codespell/pull/3201)
- Unify multiple identities of luzpuz and Dimitri by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3205](https://togithub.com/codespell-project/codespell/pull/3205)
- Ignore personal names Damon and Manuel by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3214](https://togithub.com/codespell-project/codespell/pull/3214)
- Ignore ill-formed INI files instead of crashing by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3213](https://togithub.com/codespell-project/codespell/pull/3213)
- don't show stacktrace from KeyboardInterrupt
[#&#8203;3217](https://togithub.com/codespell-project/codespell/issues/3217)
by [@&#8203;jcubic](https://togithub.com/jcubic) in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- Adding 'hareware' to spelling corrections. by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- Add typos for knownledge->knowledge, analyzis->analysis and
compialtion->compilation by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3222](https://togithub.com/codespell-project/codespell/pull/3222)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3228](https://togithub.com/codespell-project/codespell/pull/3228)
- Add --stdin-single-line option by
[@&#8203;Jendker](https://togithub.com/Jendker) in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- Add spelling corrections for parameters by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3230](https://togithub.com/codespell-project/codespell/pull/3230)
- Ignore line endings in exclude-file by
[@&#8203;Jackenmen](https://togithub.com/Jackenmen) in
[https://github.com/codespell-project/codespell/pull/1889](https://togithub.com/codespell-project/codespell/pull/1889)
- Add typo offsers by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3232](https://togithub.com/codespell-project/codespell/pull/3232)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3235](https://togithub.com/codespell-project/codespell/pull/3235)
- Process files in sorted rather than arbitrary order by
[@&#8203;hugovk](https://togithub.com/hugovk) in
[https://github.com/codespell-project/codespell/pull/3234](https://togithub.com/codespell-project/codespell/pull/3234)
- Add refinement to 'remore' typo by
[@&#8203;luzpaz](https://togithub.com/luzpaz) in
[https://github.com/codespell-project/codespell/pull/3236](https://togithub.com/codespell-project/codespell/pull/3236)
- chore(license): update to use spdx id by
[@&#8203;chenrui333](https://togithub.com/chenrui333) in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- Materials science related corrections by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3237](https://togithub.com/codespell-project/codespell/pull/3237)
- Add spelling corrections for vulnerability and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3239](https://togithub.com/codespell-project/codespell/pull/3239)
- Bump actions/setup-python from 4 to 5 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3240](https://togithub.com/codespell-project/codespell/pull/3240)
- add velcoity -> velocity by
[@&#8203;zingale](https://togithub.com/zingale) in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- black → ruff format by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3242](https://togithub.com/codespell-project/codespell/pull/3242)
- ot is a typo also for it, which i is close to o by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3247](https://togithub.com/codespell-project/codespell/pull/3247)
- Apply a selection of refurb rules by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3244](https://togithub.com/codespell-project/codespell/pull/3244)
- Get rid of autoflake by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3250](https://togithub.com/codespell-project/codespell/pull/3250)
- Bump actions/upload-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3253](https://togithub.com/codespell-project/codespell/pull/3253)
- Bump actions/download-artifact from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3254](https://togithub.com/codespell-project/codespell/pull/3254)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3257](https://togithub.com/codespell-project/codespell/pull/3257)
- Add spelling correction for miltiple and variant. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3255](https://togithub.com/codespell-project/codespell/pull/3255)
- Collection of typos by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3251](https://togithub.com/codespell-project/codespell/pull/3251)
- test: remove warning when aspell is not installed by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- Add carrets->carets by [@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3263](https://togithub.com/codespell-project/codespell/pull/3263)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3264](https://togithub.com/codespell-project/codespell/pull/3264)
- Add support for ANSI colors on Windows by
[@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3259](https://togithub.com/codespell-project/codespell/pull/3259)
- Add prettier to pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3268](https://togithub.com/codespell-project/codespell/pull/3268)
- Apply Repo-Review suggestions by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3265](https://togithub.com/codespell-project/codespell/pull/3265)
- dictionary: pathes can be patches by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3273](https://togithub.com/codespell-project/codespell/pull/3273)
- fix: typos in comments by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- doc: Specify .codespellrc is INI formatted by
[@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3271](https://togithub.com/codespell-project/codespell/pull/3271)
- Add sanetize->sanitize by
[@&#8203;sshane](https://togithub.com/sshane) in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- Case ignore by [@&#8203;vEnhance](https://togithub.com/vEnhance) in
[https://github.com/codespell-project/codespell/pull/3272](https://togithub.com/codespell-project/codespell/pull/3272)
- Fixed
[#&#8203;3278](https://togithub.com/codespell-project/codespell/issues/3278)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- dictionnary: persan can be persian. by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3282](https://togithub.com/codespell-project/codespell/pull/3282)
- Add validaiton->validation, valuation by
[@&#8203;ydah](https://togithub.com/ydah) in
[https://github.com/codespell-project/codespell/pull/3281](https://togithub.com/codespell-project/codespell/pull/3281)
- Consistent title case capitalisation by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3286](https://togithub.com/codespell-project/codespell/pull/3286)
- Updated dictionary for
[#&#8203;2411](https://togithub.com/codespell-project/codespell/issues/2411)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3280](https://togithub.com/codespell-project/codespell/pull/3280)
- dict: falt can be fault or flat by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3289](https://togithub.com/codespell-project/codespell/pull/3289)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3291](https://togithub.com/codespell-project/codespell/pull/3291)
- Add acquistion->acquisition by
[@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- Adding fixes for recommond and recommonded by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3292](https://togithub.com/codespell-project/codespell/pull/3292)
- Add tox.ini file by [@&#8203;perillo](https://togithub.com/perillo) in
[https://github.com/codespell-project/codespell/pull/3269](https://togithub.com/codespell-project/codespell/pull/3269)
- Fixed
[#&#8203;3297](https://togithub.com/codespell-project/codespell/issues/3297)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3298](https://togithub.com/codespell-project/codespell/pull/3298)
- Enable lists in TOML config file by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3294](https://togithub.com/codespell-project/codespell/pull/3294)
- Fix ruff alerts (currently) not caught by pre-commit by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3162](https://togithub.com/codespell-project/codespell/pull/3162)
- Fixed
[#&#8203;3301](https://togithub.com/codespell-project/codespell/issues/3301)
by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3302](https://togithub.com/codespell-project/codespell/pull/3302)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3303](https://togithub.com/codespell-project/codespell/pull/3303)
- Materials science related corrections 2 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3295](https://togithub.com/codespell-project/codespell/pull/3295)
- Add spelling corrections for sphere by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3304](https://togithub.com/codespell-project/codespell/pull/3304)
- Makes config for "count" more clear as a boolean by
[@&#8203;amarvin](https://togithub.com/amarvin) in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- quanitization -> quantization by
[@&#8203;claydugo](https://togithub.com/claydugo) in
[https://github.com/codespell-project/codespell/pull/3308](https://togithub.com/codespell-project/codespell/pull/3308)
- instroment->instrument by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3309](https://togithub.com/codespell-project/codespell/pull/3309)
- Add updadated->updated and uneared->unearned by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3310](https://togithub.com/codespell-project/codespell/pull/3310)
- initiase -> initialise by
[@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3343](https://togithub.com/codespell-project/codespell/pull/3343)
- Adding correction for furance->furnace by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3347](https://togithub.com/codespell-project/codespell/pull/3347)
- Bump codecov/codecov-action from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/codespell-project/codespell/pull/3348](https://togithub.com/codespell-project/codespell/pull/3348)
- dict: disagreement by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3351](https://togithub.com/codespell-project/codespell/pull/3351)
- dict: False/true typos by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3350](https://togithub.com/codespell-project/codespell/pull/3350)
- sampe->sample by [@&#8203;matlupi](https://togithub.com/matlupi) in
[https://github.com/codespell-project/codespell/pull/3354](https://togithub.com/codespell-project/codespell/pull/3354)
- Multiple spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3349](https://togithub.com/codespell-project/codespell/pull/3349)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3352](https://togithub.com/codespell-project/codespell/pull/3352)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3357](https://togithub.com/codespell-project/codespell/pull/3357)
- Fix "dubious ownership" error in dev containers by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3361](https://togithub.com/codespell-project/codespell/pull/3361)
- Assorted mispellings by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3360](https://togithub.com/codespell-project/codespell/pull/3360)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3364](https://togithub.com/codespell-project/codespell/pull/3364)
- Add metadataa typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3368](https://togithub.com/codespell-project/codespell/pull/3368)
- Add corrections for all \*in->\*ing words starting with "A" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3336](https://togithub.com/codespell-project/codespell/pull/3336)
- Add corrections for all \*in->\*ing words starting with "B" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3312](https://togithub.com/codespell-project/codespell/pull/3312)
- Add corrections for all \*in->\*ing words starting with "C" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3314](https://togithub.com/codespell-project/codespell/pull/3314)
- editible->editable by
[@&#8203;skshetry](https://togithub.com/skshetry) in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- Add corrections for all \*in->\*ing words starting with "D" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3319](https://togithub.com/codespell-project/codespell/pull/3319)
- Add corrections for all \*in->\*ing words starting with "E" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3318](https://togithub.com/codespell-project/codespell/pull/3318)
- Add corrections for all \*in->\*ing words starting with "F" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3330](https://togithub.com/codespell-project/codespell/pull/3330)
- Add correction for spoofing and spoofed. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3370](https://togithub.com/codespell-project/codespell/pull/3370)
- Add reliabe->reliable by
[@&#8203;adamscott](https://togithub.com/adamscott) in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- Add corrections for all \*in->\*ing words starting with "G" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3325](https://togithub.com/codespell-project/codespell/pull/3325)
- Add corrections for all \*in->\*ing words starting with "H" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3315](https://togithub.com/codespell-project/codespell/pull/3315)
- Add corrections for all \*in->\*ing words starting with "I" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3329](https://togithub.com/codespell-project/codespell/pull/3329)
- Add corrections for all \*in->\*ing words starting with "J" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3331](https://togithub.com/codespell-project/codespell/pull/3331)
- Add corrections for all \*in->\*ing words starting with "K" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3332](https://togithub.com/codespell-project/codespell/pull/3332)
- Add corrections for all \*in->\*ing words starting with "L" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3326](https://togithub.com/codespell-project/codespell/pull/3326)
- Add corrections for all \*in->\*ing words starting with "M" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3317](https://togithub.com/codespell-project/codespell/pull/3317)
- Add corrections for all \*in->\*ing words starting with "N" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3320](https://togithub.com/codespell-project/codespell/pull/3320)
- Add corrections for all \*in->\*ing words starting with "O" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3313](https://togithub.com/codespell-project/codespell/pull/3313)
- Move focusin to code by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3373](https://togithub.com/codespell-project/codespell/pull/3373)
- Add filaname->filename by
[@&#8203;cjwatson](https://togithub.com/cjwatson) in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- Add corrections for all \*in->\*ing words starting with "R" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3324](https://togithub.com/codespell-project/codespell/pull/3324)
- Add corrections for all \*in->\*ing words starting with "S" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3316](https://togithub.com/codespell-project/codespell/pull/3316)
- Add corrections for all \*in->\*ing words starting with "P" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3322](https://togithub.com/codespell-project/codespell/pull/3322)
- Add corrections for all \*in->\*ing words starting with "Q" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3333](https://togithub.com/codespell-project/codespell/pull/3333)
- Add corrections for all \*in->\*ing words starting with "T" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3328](https://togithub.com/codespell-project/codespell/pull/3328)
- Add corrections for all \*in->\*ing words starting with "U" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3321](https://togithub.com/codespell-project/codespell/pull/3321)
- Add corrections for all \*in->\*ing words starting with "V" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3327](https://togithub.com/codespell-project/codespell/pull/3327)
- Add corrections for all \*in->\*ing words starting with "W" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3323](https://togithub.com/codespell-project/codespell/pull/3323)
- Add corrections for all \*in->\*ing words starting with "Y" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3334](https://togithub.com/codespell-project/codespell/pull/3334)
- Add corrections for all \*in->\*ing words starting with "Z" by
[@&#8203;jdufresne](https://togithub.com/jdufresne) in
[https://github.com/codespell-project/codespell/pull/3335](https://togithub.com/codespell-project/codespell/pull/3335)
- Add 'quotted->quoted' by
[@&#8203;sirosen](https://togithub.com/sirosen) in
[https://github.com/codespell-project/codespell/pull/3374](https://togithub.com/codespell-project/codespell/pull/3374)
- Remove reoccurrence from the dictionary.txt -- LGTM and popular word
by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3378](https://togithub.com/codespell-project/codespell/pull/3378)
- Add typos for expration(s) by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3377](https://togithub.com/codespell-project/codespell/pull/3377)
- Implement inline ignores by
[@&#8203;kaste](https://togithub.com/kaste) in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- Add softwrae typo fix by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3383](https://togithub.com/codespell-project/codespell/pull/3383)
- Add spelling corrections for morphology by
[@&#8203;adrien-berchet](https://togithub.com/adrien-berchet) in
[https://github.com/codespell-project/codespell/pull/3379](https://togithub.com/codespell-project/codespell/pull/3379)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3382](https://togithub.com/codespell-project/codespell/pull/3382)
- Several spelling suggestions by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3386](https://togithub.com/codespell-project/codespell/pull/3386)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3389](https://togithub.com/codespell-project/codespell/pull/3389)
- Add 'repeatition->repetition' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3388](https://togithub.com/codespell-project/codespell/pull/3388)
- Add labael->label and variants by
[@&#8203;peternewman](https://togithub.com/peternewman) in
[https://github.com/codespell-project/codespell/pull/3384](https://togithub.com/codespell-project/codespell/pull/3384)
- docs: add the documentation of the new inline ignore comments by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- Add reposiroty->repository by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3393](https://togithub.com/codespell-project/codespell/pull/3393)
- Adding communicationg->communicating by
[@&#8203;barndawgie](https://togithub.com/barndawgie) in
[https://github.com/codespell-project/codespell/pull/3394](https://togithub.com/codespell-project/codespell/pull/3394)
- Add 'croporate->corporate', 'incroporate->incorporate' and variants by
[@&#8203;fishilico](https://togithub.com/fishilico) in
[https://github.com/codespell-project/codespell/pull/3395](https://togithub.com/codespell-project/codespell/pull/3395)
- docs: indentation error by
[@&#8203;12rambau](https://togithub.com/12rambau) in
[https://github.com/codespell-project/codespell/pull/3392](https://togithub.com/codespell-project/codespell/pull/3392)
- More typos from Wikipedia by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3363](https://togithub.com/codespell-project/codespell/pull/3363)
- Add compatiblility / configurated by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3161](https://togithub.com/codespell-project/codespell/pull/3161)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3398](https://togithub.com/codespell-project/codespell/pull/3398)
- Handle multiline options by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3400](https://togithub.com/codespell-project/codespell/pull/3400)
- docs: just `codespell:ignore` by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/3397](https://togithub.com/codespell-project/codespell/pull/3397)
- Add `aftewards` misspelling by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3403](https://togithub.com/codespell-project/codespell/pull/3403)
- Add correction for trasversal and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3405](https://togithub.com/codespell-project/codespell/pull/3405)
- A few mispellings for the dictionnary by
[@&#8203;mdeweerd](https://togithub.com/mdeweerd) in
[https://github.com/codespell-project/codespell/pull/3404](https://togithub.com/codespell-project/codespell/pull/3404)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3406](https://togithub.com/codespell-project/codespell/pull/3406)
- Options that expect a file, should accept lists of files too by
[@&#8203;DimitriPapadopoulos](https://togithub.com/DimitriPapadopoulos)
in
[https://github.com/codespell-project/codespell/pull/2767](https://togithub.com/codespell-project/codespell/pull/2767)
- Add spelling correction for specialiaze/specialiase and variants. by
[@&#8203;cfi-gb](https://togithub.com/cfi-gb) in
[https://github.com/codespell-project/codespell/pull/3409](https://togithub.com/codespell-project/codespell/pull/3409)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3411](https://togithub.com/codespell-project/codespell/pull/3411)
- Add statestics typo (github has over 300 hits) by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3412](https://togithub.com/codespell-project/codespell/pull/3412)
- nueroimaging typo (13 hits on github) -- domain specific but no doubt
wrong! by [@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3413](https://togithub.com/codespell-project/codespell/pull/3413)
- Added minor typos by [@&#8203;matlupi](https://togithub.com/matlupi)
in
[https://github.com/codespell-project/codespell/pull/3410](https://togithub.com/codespell-project/codespell/pull/3410)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3415](https://togithub.com/codespell-project/codespell/pull/3415)
- Add netflify typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3417](https://togithub.com/codespell-project/codespell/pull/3417)
- insstance typo by
[@&#8203;yarikoptic](https://togithub.com/yarikoptic) in
[https://github.com/codespell-project/codespell/pull/3418](https://togithub.com/codespell-project/codespell/pull/3418)
- mian->main by [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo)
in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3420](https://togithub.com/codespell-project/codespell/pull/3420)
- Add coverage files to `.gitignore` by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3422](https://togithub.com/codespell-project/codespell/pull/3422)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3423](https://togithub.com/codespell-project/codespell/pull/3423)
- Add `arragne->arrange` typo by
[@&#8203;korverdev](https://togithub.com/korverdev) in
[https://github.com/codespell-project/codespell/pull/3421](https://togithub.com/codespell-project/codespell/pull/3421)
- Materials science-related corrections 3 by
[@&#8203;janosh](https://togithub.com/janosh) in
[https://github.com/codespell-project/codespell/pull/3424](https://togithub.com/codespell-project/codespell/pull/3424)
- \[pre-commit.ci] pre-commit autoupdate by
[@&#8203;pre-commit-ci](https://togithub.com/pre-commit-ci) in
[https://github.com/codespell-project/codespell/pull/3428](https://togithub.com/codespell-project/codespell/pull/3428)

#### New Contributors

- [@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3126](https://togithub.com/codespell-project/codespell/pull/3126)
- [@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3146](https://togithub.com/codespell-project/codespell/pull/3146)
- [@&#8203;macpijan](https://togithub.com/macpijan) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3197](https://togithub.com/codespell-project/codespell/pull/3197)
- [@&#8203;hugovk](https://togithub.com/hugovk) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3204](https://togithub.com/codespell-project/codespell/pull/3204)
- [@&#8203;jcubic](https://togithub.com/jcubic) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3218](https://togithub.com/codespell-project/codespell/pull/3218)
- [@&#8203;barndawgie](https://togithub.com/barndawgie) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3215](https://togithub.com/codespell-project/codespell/pull/3215)
- [@&#8203;Jendker](https://togithub.com/Jendker) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3224](https://togithub.com/codespell-project/codespell/pull/3224)
- [@&#8203;chenrui333](https://togithub.com/chenrui333) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3231](https://togithub.com/codespell-project/codespell/pull/3231)
- [@&#8203;zingale](https://togithub.com/zingale) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3241](https://togithub.com/codespell-project/codespell/pull/3241)
- [@&#8203;perillo](https://togithub.com/perillo) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3262](https://togithub.com/codespell-project/codespell/pull/3262)
- [@&#8203;vEnhance](https://togithub.com/vEnhance) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3274](https://togithub.com/codespell-project/codespell/pull/3274)
- [@&#8203;sshane](https://togithub.com/sshane) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3275](https://togithub.com/codespell-project/codespell/pull/3275)
- [@&#8203;matlupi](https://togithub.com/matlupi) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3279](https://togithub.com/codespell-project/codespell/pull/3279)
- [@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) made
their first contribution in
[https://github.com/codespell-project/codespell/pull/3287](https://togithub.com/codespell-project/codespell/pull/3287)
- [@&#8203;amarvin](https://togithub.com/amarvin) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3307](https://togithub.com/codespell-project/codespell/pull/3307)
- [@&#8203;skshetry](https://togithub.com/skshetry) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3367](https://togithub.com/codespell-project/codespell/pull/3367)
- [@&#8203;adamscott](https://togithub.com/adamscott) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3372](https://togithub.com/codespell-project/codespell/pull/3372)
- [@&#8203;cjwatson](https://togithub.com/cjwatson) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3371](https://togithub.com/codespell-project/codespell/pull/3371)
- [@&#8203;kaste](https://togithub.com/kaste) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/2400](https://togithub.com/codespell-project/codespell/pull/2400)
- [@&#8203;12rambau](https://togithub.com/12rambau) made their first
contribution in
[https://github.com/codespell-project/codespell/pull/3390](https://togithub.com/codespell-project/codespell/pull/3390)
- [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo) made their
first contribution in
[https://github.com/codespell-project/codespell/pull/3339](https://togithub.com/codespell-project/codespell/pull/3339)

**Full Changelog**:
codespell-project/codespell@v2.2.6...v2.3.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job log](https://developer.mend.io/github/jooola/earhorn).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNjguMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy40MzguMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
l0rd added a commit to l0rd/podman that referenced this pull request Oct 25, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Oct 25, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Oct 25, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

See codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Oct 28, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Oct 28, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Oct 28, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Nov 4, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Nov 4, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Nov 4, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Nov 7, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
l0rd added a commit to l0rd/podman that referenced this pull request Nov 7, 2024
Version 2.3.0 of codespell allows using inline
comments to ignore some spelling errors.

codespell-project/codespell#2400

Signed-off-by: Mario Loriedo <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Support inline ignores

9 participants