Source code spell checker
Find a file
Ed Page 0d5e460b7c
Merge pull request #856 from epage/julia
fix(dict): Add Julia-specific dictionary
2023-10-17 13:18:50 -05:00
.cargo chore: Don't set rustflags by default 2023-03-29 14:46:23 -05:00
.github chore(ci): Don't check spelling 2023-10-09 13:28:56 -05:00
action chore: Release 2023-10-16 12:51:32 -05:00
benchsuite test: Fix typo 2021-10-25 10:29:37 -05:00
crates fix(dict): Dont correct common Julia terms 2023-10-16 20:51:12 -05:00
docs chore: Release 2023-10-16 12:51:32 -05:00
.clippy.toml chore: Update MSRV to 1.70.0 2023-09-01 08:51:04 -05:00
.dockerignore New dockerfile for #427. Builds on demand 2022-02-10 21:05:57 -08:00
.gitignore chore: First step 2023-03-29 14:33:22 -05:00
.ignore feat: Support english dialects 2020-08-20 19:37:37 -05:00
.pre-commit-config.yaml chore: Adopt '_rust/main' template 2023-08-14 15:06:53 -05:00
.pre-commit-hooks.yaml Add "--force-exclude" option 2023-10-09 19:39:11 +00:00
action.yml fix(action): Don't require sudo 2023-05-22 13:30:04 -05:00
Cargo.lock chore: Clean up dependencies 2023-10-16 12:58:00 -05:00
Cargo.toml perf(cli): Speed up with codegen-units 2023-09-18 14:06:23 -05:00
CHANGELOG.md chore: Release 2023-10-16 12:51:32 -05:00
committed.toml chore: First step 2023-03-29 14:33:22 -05:00
CONTRIBUTING.md docs(contrib): Remove reference to travis 2023-03-29 14:40:57 -05:00
deny.toml chore: Approve ISC 2023-09-07 09:33:44 -05:00
Dockerfile Merge pull request #639 from scop/feat/docker-entrypoint 2022-12-19 08:06:08 -06:00
LICENSE-APACHE chore: First step 2023-03-29 14:33:22 -05:00
LICENSE-MIT chore: First step 2023-03-29 14:33:22 -05:00
README.md chore: Update from '_rust/main' 2023-10-06 15:04:55 -05:00
release.toml chore: Update release process 2023-03-29 14:51:13 -05:00
setup.py chore: Release 2023-10-16 12:51:32 -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-ignore-identifiers-re = [
    # *sigh* this just isn't worth the cost of fixing
    "AttributeID.*Supress.*",
]

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