Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement inline ignores #2400

Merged

Conversation

kaste
Copy link
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
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.

codespell_lib/_codespell.py Show resolved Hide resolved
codespell_lib/tests/test_basic.py Outdated Show resolved Hide resolved
@@ -32,6 +32,8 @@
# endpoint. Emails are more restrictive, so the endpoint remains flexible.
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
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
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
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?

codespell_lib/tests/test_basic.py Outdated Show resolved Hide resolved
@kaste
Copy link
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.

codespell_lib/_codespell.py Outdated Show resolved Hide resolved
codespell_lib/_codespell.py Show resolved Hide resolved
@yarikoptic
Copy link
Contributor

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

@victor-kostyuk
Copy link

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

@kaste
Copy link
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

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

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

@DimitriPapadopoulos
Copy link
Collaborator

Need to rebase to resolve conflicts too.

@kaste
Copy link
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

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
Copy link
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

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
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
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.

@kaste
Copy link
Contributor Author

kaste commented Feb 22, 2023

At least I'm green 😄

image

finally.

@DimitriPapadopoulos
Copy link
Collaborator

@peternewman I think we should merge this. This pull request has been stuck for more than a year. Whenever changes have been asked, @kaste has been prompt to take them into account and apply changes or provide answers, but the issue subsequently remained stuck on "change requested" for months. I think the pull request is good enough as it is: converging on finalising a pull request in finite time is more important than getting it perfect. I suggest we use codespell:ignore for now, as codespell:ignore: words aligns perfectly with the way linters work. Also, I am not convinced that file scope as opposed to line scope is a good choice for cspell:ignore, it should arguably have been cspell:file-ignore for file scope and cspell:ignore for line scope. Any way, we can work with CSpell on common directives later on.

@kaste
Copy link
Contributor Author

kaste commented Feb 18, 2024

Ridiculous... the ghosting starts again.

@kaste kaste closed this Feb 18, 2024
@12rambau
Copy link
Contributor

12rambau commented Feb 18, 2024

I think that's the first time I see something so sad on GitHub, @kaste proposed a solution to a community problem, sticked to it for more than a year, answered ALL your requests and now because of a single maintainer stubborness, he closed it.
Just want to mentioned that this PR has 15 hearts on the first message. I consider it to be huge for a PR in general and for a codespell tool in particular.
@kaste please don't delete your branch I'll continue using it, it works exactly as it should be.

@DimitriPapadopoulos
Copy link
Collaborator

I'll have a look eventually.

@DimitriPapadopoulos DimitriPapadopoulos merged commit 8fa1baa into codespell-project:master Mar 10, 2024
27 checks passed
@DimitriPapadopoulos
Copy link
Collaborator

@kaste Thank you for your contribution and your patience.

Some documentation would be welcome, but I don't dare asking for more.

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

#### New Contributors

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

#### New Contributors

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

#### New Contributors

- [@&#8203;SimonVerhoeven](https://togithub.com/SimonVerhoeven) made
their first contribution in
[codespell-project/codespell#3126
- [@&#8203;muhahahmad68](https://togithub.com/muhahahmad68) made their
first contribution in
[codespell-project/codespell#3146
- [@&#8203;macpijan](https://togithub.com/macpijan) made their first
contribution in
[codespell-project/codespell#3197
- [@&#8203;hugovk](https://togithub.com/hugovk) made their first
contribution in
[codespell-project/codespell#3204
- [@&#8203;jcubic](https://togithub.com/jcubic) made their first
contribution in
[codespell-project/codespell#3218
- [@&#8203;barndawgie](https://togithub.com/barndawgie) made their first
contribution in
[codespell-project/codespell#3215
- [@&#8203;Jendker](https://togithub.com/Jendker) made their first
contribution in
[codespell-project/codespell#3224
- [@&#8203;chenrui333](https://togithub.com/chenrui333) made their first
contribution in
[codespell-project/codespell#3231
- [@&#8203;zingale](https://togithub.com/zingale) made their first
contribution in
[codespell-project/codespell#3241
- [@&#8203;perillo](https://togithub.com/perillo) made their first
contribution in
[codespell-project/codespell#3262
- [@&#8203;vEnhance](https://togithub.com/vEnhance) made their first
contribution in
[codespell-project/codespell#3274
- [@&#8203;sshane](https://togithub.com/sshane) made their first
contribution in
[codespell-project/codespell#3275
- [@&#8203;matlupi](https://togithub.com/matlupi) made their first
contribution in
[codespell-project/codespell#3279
- [@&#8203;hannah-morilak](https://togithub.com/hannah-morilak) made
their first contribution in
[codespell-project/codespell#3287
- [@&#8203;amarvin](https://togithub.com/amarvin) made their first
contribution in
[codespell-project/codespell#3307
- [@&#8203;skshetry](https://togithub.com/skshetry) made their first
contribution in
[codespell-project/codespell#3367
- [@&#8203;adamscott](https://togithub.com/adamscott) made their first
contribution in
[codespell-project/codespell#3372
- [@&#8203;cjwatson](https://togithub.com/cjwatson) made their first
contribution in
[codespell-project/codespell#3371
- [@&#8203;kaste](https://togithub.com/kaste) made their first
contribution in
[codespell-project/codespell#2400
- [@&#8203;12rambau](https://togithub.com/12rambau) made their first
contribution in
[codespell-project/codespell#3390
- [@&#8203;MercuryDemo](https://togithub.com/MercuryDemo) made their
first contribution in
[codespell-project/codespell#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 added a commit to AlexWaygood/typeshed-stats that referenced this pull request 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 <Alex.Waygood@Gmail.com>
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