Source code spell checker
Find a file
Ed Page 4de8a7c366
Merge pull request #679 from phip1611/erronerous
feat(dict): Add: erronerous -> erroneous
2023-03-13 12:32:01 -05:00
.cargo chore: Rename .cargo/{config => config.toml} 2022-09-01 09:14:02 +02:00
.github chore(ci): Update maturin CI 2023-03-08 11:35:43 -06:00
benchsuite test: Fix typo 2021-10-25 10:29:37 -05:00
crates Merge pull request #679 from phip1611/erronerous 2023-03-13 12:32:01 -05:00
docker chore: Release 2023-03-13 11:57:15 -05:00
docs chore: Release 2023-03-13 11:57:15 -05:00
.clippy.toml chore: Bump MSRV to 1.64.0 2022-10-04 10:51:03 -05:00
.dockerignore New dockerfile for #427. Builds on demand 2022-02-10 21:05:57 -08:00
.gitignore chore: Upgrade boilerplate 2022-02-15 13:31:29 -06:00
.ignore feat: Support english dialects 2020-08-20 19:37:37 -05:00
.pre-commit-config.yaml test: Cactch YAML mistakes 2022-06-16 11:06:20 -05:00
.pre-commit-hooks.yaml feat: Add Docker pre-commit hook 2022-12-20 21:06:04 +02:00
action.yml feat: Allow writing changes in the github action 2023-02-08 15:00:48 +01:00
Cargo.lock chore: Release 2023-03-13 11:57:15 -05:00
Cargo.toml fix(pre-commit): Separate cli from pre-commit package 2023-03-08 10:19:20 -06:00
CHANGELOG.md chore: Release 2023-03-13 11:57:15 -05:00
committed.toml chore: Switch to renovate 2022-12-01 11:20:06 -06:00
CONTRIBUTING.md docs: Fix broken links in contribution doc 2023-02-10 08:12:39 +09:00
Dockerfile Merge pull request #639 from scop/feat/docker-entrypoint 2022-12-19 08:06:08 -06:00
LICENSE-APACHE Initial commit 2019-01-22 15:01:33 -07:00
LICENSE-MIT docs: Clarify copyright 2023-02-27 03:48:39 -06:00
README.md Edited README to show install instructions for 'conda' 2023-02-24 20:38:08 +01:00
release.toml chore: Update release process 2022-10-25 07:08:45 -05:00
setup.py chore: Release 2023-03-13 11:57:15 -05:00

typos

Source code spell checker

Finds and corrects spelling mistakes among source code:

  • Fast enough to run on monorepos
  • Low false positives so you can run on PRs

Screenshot

codecov Documentation License Crates Status

Dual-licensed under MIT or Apache 2.0

Documentation

Install

Download a pre-built binary (installable via gh-install).

Or use rust to install:

cargo install typos-cli

Or use Homebrew to install:

brew install typos-cli

Or use Conda to install:

conda install typos

Getting Started

Most commonly, you'll either want to see what typos are available with

typos

Or have them fixed

typos --write-changes
typos -w

If there is any ambiguity (multiple possible corrections), typos will just report it to the user and move on.

False-positives

Sometimes, what looks like a typo is intentional, like with people's names, acronyms, or localized content.

To mark a word or an identifier (grouping of words) as valid, add it your _typos.toml by declaring itself as the valid spelling:

[default.extend-identifiers]
# *sigh* this just isn't worth the cost of fixing
AttributeIDSupressMenu = "AttributeIDSupressMenu"

[default.extend-words]
# Don't correct the surname "Teh"
teh = "teh"

For cases like localized content, you can disable spell checking of file contents while still checking the file name:

[type.po]
extend-glob = ["*.po"]
check-file = false

(run typos --type-list to see configured file types)

If you need some more flexibility, you can completely exclude some files from consideration:

[files]
extend-exclude = ["localized/*.po"]

Integrations

Custom

typos provides several building blocks for custom native integrations

  • - reads from stdin, --write-changes will be written to stdout
  • --diff to provide a diff
  • --format json to get jsonlines with exit code 0 on no errors, code 2 on typos, anything else is an error.

Examples:

# Read file from stdin, write corrected version to stdout
typos - --write-changes
# Creates a diff of what would change
typos dir/file --diff
# Fully programmatic control
typos dir/file --format json

Debugging

You can see what the effective config looks like by running

typos --dump-config -

You can then see how typos is processing your project with

typos --files
typos --identifiers
typos --words

If you need to dig in more, you can enable debug logging with -v

FAQ

Why was ... not corrected?

tl;dr typos doesn't know about it yet

typos maintains a list of known typo corrections to keep the false positive count low so it can safely run unassisted.

This is in contrast to most spell checking UIs people use where there is a known list of valid words. In this case, the spell checker tries to guess your intent by finding the closest-looking word. It then has a gauge for when a word isn't close enough and assumes you know best. The user has the opportunity to verify these corrections and explicitly allow or reject them.

For more on the trade offs of these approaches, see Design.