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