typos 1.30.0__py3-none-musllinux_1_2_aarch64.whl → 1.40.1__py3-none-musllinux_1_2_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of typos might be problematic. Click here for more details.

@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: typos
3
+ Version: 1.40.1
4
+ Classifier: Environment :: Console
5
+ Classifier: Intended Audience :: Developers
6
+ Classifier: Topic :: Software Development
7
+ Classifier: Operating System :: OS Independent
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: License :: OSI Approved :: Apache Software License
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Rust
13
+ Classifier: Programming Language :: Python :: Implementation :: CPython
14
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
15
+ Summary: Source Code Spelling Correction
16
+ Keywords: development,spelling
17
+ Requires-Python: >=3.8
18
+ Project-URL: Repository, https://github.com/crate-ci/typos
19
+ Project-URL: Documentation, https://github.com/crate-ci/typos#typos
20
+ Project-URL: Changelog, https://github.com/crate-ci/typos/blob/master/CHANGELOG.md
21
+ Project-URL: Releases, https://github.com/crate-ci/typos/releases
@@ -0,0 +1,4 @@
1
+ typos-1.40.1.data/scripts/typos,sha256=sq9lgBPwYpxAWWYdwFlSJEK1aV3ZfAI6SnJKNOAigzo,29651176
2
+ typos-1.40.1.dist-info/METADATA,sha256=gMvEGpmk0f5Z1y2DKEduRH9qlA7_0d66uKuGxRMkl6E,984
3
+ typos-1.40.1.dist-info/WHEEL,sha256=t7ZGTfw0JdxirzrxXiHbQb8rSJRoU9aENbJYNuapqvs,106
4
+ typos-1.40.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: maturin (1.8.2)
2
+ Generator: maturin (1.10.2)
3
3
  Root-Is-Purelib: false
4
4
  Tag: py3-none-musllinux_1_2_aarch64
@@ -1,206 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: typos
3
- Version: 1.30.0
4
- Classifier: Intended Audience :: Developers
5
- Classifier: Topic :: Software Development
6
- Classifier: Programming Language :: Rust
7
- Classifier: Programming Language :: Python :: Implementation :: CPython
8
- Classifier: Programming Language :: Python :: Implementation :: PyPy
9
- Summary: Source Code Spelling Correction
10
- Keywords: development,spelling
11
- License: MIT OR Apache-2.0
12
- Requires-Python: >=3.7
13
- Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
14
- Project-URL: Source Code, https://github.com/crate-ci/typos
15
-
16
- # typos
17
-
18
- > **Source code spell checker**
19
-
20
- Finds and corrects spelling mistakes among source code:
21
- - Fast enough to run on monorepos
22
- - Low false positives so you can run on PRs
23
-
24
- ![Screenshot](./docs/screenshot.png)
25
-
26
-
27
- [![Downloads](https://img.shields.io/github/downloads/crate-ci/typos/total.svg)](https://github.com/crate-ci/typos/releases)
28
- [![codecov](https://codecov.io/gh/crate-ci/typos/branch/master/graph/badge.svg)](https://codecov.io/gh/crate-ci/typos)
29
- [![Documentation](https://img.shields.io/badge/docs-master-blue.svg)][Documentation]
30
- ![License](https://img.shields.io/crates/l/typos.svg)
31
- [![Crates Status](https://img.shields.io/crates/v/typos.svg)][Crates.io]
32
-
33
- Dual-licensed under [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE)
34
-
35
- ## Documentation
36
-
37
- - [Installation](#install)
38
- - [Getting Started](#getting-started)
39
- - [False Positives](#false-positives)
40
- - [Integrations](#integrations)
41
- - [GitHub Action](docs/github-action.md)
42
- - [pre-commit](docs/pre-commit.md)
43
- - [Custom](#custom)
44
- - [Debugging](#debugging)
45
- - [Reference](docs/reference.md)
46
- - [FAQ](#faq)
47
- - [Comparison with other spell checkers](docs/comparison.md)
48
- - [Projects using typos](https://github.com/crate-ci/typos/wiki)
49
- - [Benchmarks](benchsuite/runs)
50
- - [Design](docs/design.md)
51
- - [Contribute](CONTRIBUTING.md)
52
- - [CHANGELOG](CHANGELOG.md)
53
-
54
- ## Install
55
-
56
- [Download](https://github.com/crate-ci/typos/releases) a pre-built binary
57
- (installable via [gh-install](https://github.com/crate-ci/gh-install)).
58
-
59
- Or use rust to install:
60
- ```console
61
- $ cargo install typos-cli
62
- ```
63
-
64
- Or use [Homebrew](https://brew.sh/) to install:
65
- ```console
66
- $ brew install typos-cli
67
- ```
68
-
69
- Or use [Conda](https://conda.io/) to install:
70
- ```console
71
- $ conda install typos
72
- ```
73
-
74
- Or use [Pacman](https://wiki.archlinux.org/title/pacman) to install:
75
- ```console
76
- $ sudo pacman -S typos
77
- ```
78
-
79
- ## Getting Started
80
-
81
- Most commonly, you'll either want to see what typos are available with
82
- ```console
83
- $ typos
84
- ```
85
-
86
- Or have them fixed
87
- ```console
88
- $ typos --write-changes
89
- $ typos -w
90
- ```
91
- If there is any ambiguity (multiple possible corrections), `typos` will just report it to the user and move on.
92
-
93
- ### False Positives
94
-
95
- Sometimes, what looks like a typo is intentional, like with people's names, acronyms, or localized content.
96
-
97
- To mark a word or an identifier (grouping of words) as valid, add it your [`_typos.toml`](docs/reference.md) by declaring itself as the valid spelling:
98
- ```toml
99
- [default]
100
- extend-ignore-identifiers-re = [
101
- # *sigh* this just isn't worth the cost of fixing
102
- "AttributeID.*Supress.*",
103
- ]
104
-
105
- [default.extend-identifiers]
106
- # *sigh* this just isn't worth the cost of fixing
107
- AttributeIDSupressMenu = "AttributeIDSupressMenu"
108
-
109
- [default.extend-words]
110
- # Don't correct the surname "Teh"
111
- teh = "teh"
112
- ```
113
- For more ways to ignore or extend the dictionary with examples, see the [config reference](docs/reference.md).
114
-
115
- For cases like localized content, you can disable spell checking of file contents while still checking the file name:
116
- ```toml
117
- [type.po]
118
- extend-glob = ["*.po"]
119
- check-file = false
120
- ```
121
- (run `typos --type-list` to see configured file types)
122
-
123
- If you need some more flexibility, you can completely exclude some files from consideration:
124
- ```toml
125
- [files]
126
- extend-exclude = ["localized/*.po"]
127
- ```
128
-
129
- ### Integrations
130
-
131
- - [GitHub Actions](docs/github-action.md)
132
- - [pre-commit](docs/pre-commit.md)
133
- - [🐊Putout Processor](https://github.com/putoutjs/putout-processor-typos)
134
- - [Visual Studio Code](https://github.com/tekumara/typos-vscode)
135
- - [typos-lsp (Language Server Protocol server)](https://github.com/tekumara/typos-vscode)
136
-
137
- #### Custom
138
-
139
- `typos` provides several building blocks for custom native integrations
140
- - `-` reads from `stdin`, `--write-changes` will be written to `stdout`
141
- - `--diff` to provide a diff
142
- - `--format json` to get jsonlines with exit code 0 on no errors, code 2 on typos, anything else is an error.
143
-
144
- Examples:
145
- ```console
146
- $ # Read file from stdin, write corrected version to stdout
147
- $ typos - --write-changes
148
- $ # Creates a diff of what would change
149
- $ typos dir/file --diff
150
- $ # Fully programmatic control
151
- $ typos dir/file --format json
152
- ```
153
-
154
- ### Debugging
155
-
156
- You can see what the effective config looks like by running
157
- ```console
158
- $ typos --dump-config -
159
- ```
160
-
161
- You can then see how typos is processing your project with
162
- ```console
163
- $ typos --files
164
- $ typos --identifiers
165
- $ typos --words
166
- ```
167
-
168
- If you need to dig in more, you can enable debug logging with `-v`
169
-
170
- ## FAQ
171
-
172
- ### Why was ... not corrected?
173
-
174
- **Does the file show up in `typos --files`?**
175
- If not, check your config with `typos --dump-config -`.
176
- The `[files]` table controls how we walk files.
177
- If you are using `files.extend-exclude`,
178
- are you running into [#593](https://github.com/crate-ci/typos/issues/593)?
179
- If you are using `files.ignore-vcs = true`,
180
- is the file in your `.gitignore` but git tracks it anyways?
181
- Prefer allowing the file explicitly (see [#909](https://github.com/crate-ci/typos/issues/909)).
182
-
183
- **Does the identifier show up in `typos --identifiers` or the word show up in `typos --words`?**
184
- If not, it might be subject to one of typos' heuristics for
185
- detecting non-words (like hashes) or
186
- unambiguous words (like words after a `\` escape).
187
-
188
- If it is showing up, likely `typos` doesn't know about it yet.
189
-
190
- `typos` maintains a list of known typo corrections to keep the false positive
191
- count low so it can safely run unassisted.
192
-
193
- This is in contrast to most spell checking UIs people use where there is a
194
- known list of valid words. In this case, the spell checker tries to guess your
195
- intent by finding the closest-looking word. It then has a gauge for when a
196
- word isn't close enough and assumes you know best. The user has the
197
- opportunity to verify these corrections and explicitly allow or reject them.
198
-
199
- For more on the trade offs of these approaches, see [Design](docs/design.md).
200
-
201
- - To correct it locally, see also our [False Positives documentation](#false-positives).
202
- - To contribute your correction, see [Contribute](CONTRIBUTING.md)
203
-
204
- [Crates.io]: https://crates.io/crates/typos-cli
205
- [Documentation]: https://docs.rs/typos
206
-
@@ -1,4 +0,0 @@
1
- typos-1.30.0.dist-info/METADATA,sha256=Y_tVmrt1sgT707h1tHl2l7yQt3oiSG7I0KJSLa9biBg,6642
2
- typos-1.30.0.dist-info/WHEEL,sha256=rZZbzexZ_X4T_cVZvw0KM8Z8ZHrMiyD-oPTT_htbCt8,105
3
- typos-1.30.0.data/scripts/typos,sha256=lnHIdfE6CK_q2qxvuxEBmBzcFt6dCFc_XO44oOQPsSE,31082008
4
- typos-1.30.0.dist-info/RECORD,,