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

Case ignore #3272

Merged
merged 8 commits into from
Jan 9, 2024
Merged

Case ignore #3272

merged 8 commits into from
Jan 9, 2024

Conversation

vEnhance
Copy link
Contributor

@vEnhance vEnhance commented Jan 3, 2024

Starting on #1578, WIP

@DimitriPapadopoulos
Copy link
Collaborator

#3270 makes all typos (but not suggested fixes) lowercase. Does your implantation require #3270 as a prior?

@vEnhance
Copy link
Contributor Author

vEnhance commented Jan 3, 2024

#3270 makes all typos (but not suggested fixes) lowercase. Does your implantation require #3270 as a prior?

It should be independent. The implementation of this PR only affects the reading of -I and -L options and leaves everything else the same.

In fact, the build_dict function that parses the built-in dictionaries currently reads (this is not changed by this PR):

def build_dict(
    filename: str,
    misspellings: Dict[str, Misspelling],
    ignore_words: Set[str],
) -> None:
    with open(filename, encoding="utf-8") as f:
        translate_tables = [(x, str.maketrans(x, y)) for x, y in alt_chars]
        for line in f:
            [key, data] = line.split("->")
            # TODO for now, convert both to lower. Someday we can maybe add
            # support for fixing caps.
            key = key.lower()
            data = data.lower()
            if key not in ignore_words:
                add_misspelling(key, data, misspellings)
            # generate alternative misspellings/fixes
            for x, table in translate_tables:
                if x in key:
                    alt_key = key.translate(table)
                    alt_data = data.translate(table)
                    if alt_key not in ignore_words:
                        add_misspelling(alt_key, alt_data, misspellings)

that is, when reading the dictionaries included with codespell, actually everything is already converted into lowercase anyway.

@vEnhance vEnhance marked this pull request as ready for review January 3, 2024 19:10
codespell_lib/_codespell.py Show resolved Hide resolved
codespell_lib/_codespell.py Outdated Show resolved Hide resolved
codespell_lib/_codespell.py Outdated Show resolved Hide resolved
DimitriPapadopoulos

This comment was marked as resolved.

@larson

This comment was marked as resolved.

@DimitriPapadopoulos
Copy link
Collaborator

@larsoner Would you like to have a look?

@larsoner
Copy link
Member

larsoner commented Jan 8, 2024

Code changes look reasonable. There is some risk that someone with custom dictionaries will get different behavior with this PR, though. Safest would be to add a switch to make this opt-in like --ignore-words-case-sensitive or similar. Less safe but maybe useful (or maybe YAGNI) would be to add a --ignore-words-case-insensitive that could get back the old behavior, but people can also get the old behavior just by modifying their dictionaries. I think I can live with the backward incompatible change but wanted to make sure we thought about it first!

@vEnhance
Copy link
Contributor Author

vEnhance commented Jan 8, 2024

There is some risk that someone with custom dictionaries will get different behavior with this PR, though.

So I believe the changes in this PR should only affect words passed by config or command line options, which is why I stated in #3272 (comment) this was independent of #3270. Similarly, there should be no backwards-incompatability with custom dictionaries either, because those are read using build_dict which has remained unchanged.

The only users who should see any changes are people who have specified, say, something like SEH in -I which, as mentioned previously (e.g. #1578 (comment)), actually did nothing. I can't actually imagine any situations where someone would add a word into an ignore list and want/expect it to have no effect.

Please let me know if I misunderstood.

@larsoner larsoner merged commit 87edf05 into codespell-project:master Jan 9, 2024
14 checks passed
@larsoner
Copy link
Member

larsoner commented Jan 9, 2024

Thanks @vEnhance !

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

None yet

4 participants