typos


Nametypos JSON
Version 1.20.8 PyPI version JSON
download
home_pageNone
SummarySource Code Spelling Correction
upload_time2024-04-12 21:07:02
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT OR Apache-2.0
keywords development spelling
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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](./docs/screenshot.png)

[![codecov](https://codecov.io/gh/crate-ci/typos/branch/master/graph/badge.svg)](https://codecov.io/gh/crate-ci/typos)
[![Documentation](https://img.shields.io/badge/docs-master-blue.svg)][Documentation]
![License](https://img.shields.io/crates/l/typos.svg)
[![Crates Status](https://img.shields.io/crates/v/typos.svg)][Crates.io]

Dual-licensed under [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE)

## Documentation

- [Installation](#install)
- [Getting Started](#getting-started)
  - [False Positives](#false-positives)
  - [Integrations](#integrations)
    - [GitHub Action](docs/github-action.md)
    - [pre-commit](docs/pre-commit.md)
    - [Custom](#custom)
  - [Debugging](#debugging)
- [Reference](docs/reference.md)
- [FAQ](#faq)
- [Comparison with other spell checkers](docs/comparison.md)
- [Projects using typos](https://github.com/crate-ci/typos/wiki)
- [Benchmarks](benchsuite/runs)
- [Design](docs/design.md)
- [Contribute](CONTRIBUTING.md)
- [CHANGELOG](CHANGELOG.md)

## Install

[Download](https://github.com/crate-ci/typos/releases) a pre-built binary
(installable via [gh-install](https://github.com/crate-ci/gh-install)).

Or use rust to install:
```bash
cargo install typos-cli
```

Or use [Homebrew](https://brew.sh/) to install:
```bash
brew install typos-cli
```

Or use [Conda](https://conda.io/) to install:
```bash
conda install typos
```

Or use [Pacman](https://wiki.archlinux.org/title/pacman) to install:
```
sudo pacman -S typos
```

## Getting Started

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

Or have them fixed
```bash
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`](docs/reference.md) by declaring itself as the valid spelling:
```toml
[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:
```toml
[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:
```toml
[files]
extend-exclude = ["localized/*.po"]
```

### Integrations

- [GitHub Actions](docs/github-action.md)
- [pre-commit](docs/pre-commit.md)
- [🐊Putout Processor](https://github.com/putoutjs/putout-processor-typos)
- [Visual Studio Code](https://github.com/tekumara/typos-vscode)
- [typos-lsp (Language Server Protocol server)](https://github.com/tekumara/typos-vscode)

#### 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:
```bash
# 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
```bash
typos --dump-config -
```

You can then see how typos is processing your project with
```bash
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?

**Does the file show up in `typos --files`?**
If not, check your config with `typos --dump-config -`.
The `[files]` table controls how we walk files.
If you are using `files.extend-exclude`,
are you running into [#593](https://github.com/crate-ci/typos/issues/593)?
If you are using `files.ignore-vcs = true`,
is the file in your `.gitignore` but git tracks it anyways?
Prefer allowing the file explicitly (see [#909](https://github.com/crate-ci/typos/issues/909)).

**Does the identifier show up in `typos --identifiers` or the word show up in `typos --words`?**
If not, it might be subject to one of typos' heuristics for
detecting non-words (like hashes) or
unambiguous words (like words after a `\` escape).

If it is showing up, likely `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](docs/design.md).

- To correct it locally, see also our [False Positives documentation](#false-positives).
- To contribute your correction, see [Contribute](CONTRIBUTING.md)

[Crates.io]: https://crates.io/crates/typos-cli
[Documentation]: https://docs.rs/typos


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "typos",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "development, spelling",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/ac/bb/558da83cb1c6cdf467c29a49c022aaf50a733d78c3bb02c05e259f302a47/typos-1.20.8.tar.gz",
    "platform": null,
    "description": "# typos\n\n> **Source code spell checker**\n\nFinds and corrects spelling mistakes among source code:\n- Fast enough to run on monorepos\n- Low false positives so you can run on PRs\n\n![Screenshot](./docs/screenshot.png)\n\n[![codecov](https://codecov.io/gh/crate-ci/typos/branch/master/graph/badge.svg)](https://codecov.io/gh/crate-ci/typos)\n[![Documentation](https://img.shields.io/badge/docs-master-blue.svg)][Documentation]\n![License](https://img.shields.io/crates/l/typos.svg)\n[![Crates Status](https://img.shields.io/crates/v/typos.svg)][Crates.io]\n\nDual-licensed under [MIT](LICENSE-MIT) or [Apache 2.0](LICENSE-APACHE)\n\n## Documentation\n\n- [Installation](#install)\n- [Getting Started](#getting-started)\n  - [False Positives](#false-positives)\n  - [Integrations](#integrations)\n    - [GitHub Action](docs/github-action.md)\n    - [pre-commit](docs/pre-commit.md)\n    - [Custom](#custom)\n  - [Debugging](#debugging)\n- [Reference](docs/reference.md)\n- [FAQ](#faq)\n- [Comparison with other spell checkers](docs/comparison.md)\n- [Projects using typos](https://github.com/crate-ci/typos/wiki)\n- [Benchmarks](benchsuite/runs)\n- [Design](docs/design.md)\n- [Contribute](CONTRIBUTING.md)\n- [CHANGELOG](CHANGELOG.md)\n\n## Install\n\n[Download](https://github.com/crate-ci/typos/releases) a pre-built binary\n(installable via [gh-install](https://github.com/crate-ci/gh-install)).\n\nOr use rust to install:\n```bash\ncargo install typos-cli\n```\n\nOr use [Homebrew](https://brew.sh/) to install:\n```bash\nbrew install typos-cli\n```\n\nOr use [Conda](https://conda.io/) to install:\n```bash\nconda install typos\n```\n\nOr use [Pacman](https://wiki.archlinux.org/title/pacman) to install:\n```\nsudo pacman -S typos\n```\n\n## Getting Started\n\nMost commonly, you'll either want to see what typos are available with\n```bash\ntypos\n```\n\nOr have them fixed\n```bash\ntypos --write-changes\ntypos -w\n```\nIf there is any ambiguity (multiple possible corrections), `typos` will just report it to the user and move on.\n\n### False-positives\n\nSometimes, what looks like a typo is intentional, like with people's names, acronyms, or localized content.\n\nTo 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:\n```toml\n[default]\nextend-ignore-identifiers-re = [\n    # *sigh* this just isn't worth the cost of fixing\n    \"AttributeID.*Supress.*\",\n]\n\n[default.extend-identifiers]\n# *sigh* this just isn't worth the cost of fixing\nAttributeIDSupressMenu = \"AttributeIDSupressMenu\"\n\n[default.extend-words]\n# Don't correct the surname \"Teh\"\nteh = \"teh\"\n```\n\nFor cases like localized content, you can disable spell checking of file contents while still checking the file name:\n```toml\n[type.po]\nextend-glob = [\"*.po\"]\ncheck-file = false\n```\n(run `typos --type-list` to see configured file types)\n\nIf you need some more flexibility, you can completely exclude some files from consideration:\n```toml\n[files]\nextend-exclude = [\"localized/*.po\"]\n```\n\n### Integrations\n\n- [GitHub Actions](docs/github-action.md)\n- [pre-commit](docs/pre-commit.md)\n- [\ud83d\udc0aPutout Processor](https://github.com/putoutjs/putout-processor-typos)\n- [Visual Studio Code](https://github.com/tekumara/typos-vscode)\n- [typos-lsp (Language Server Protocol server)](https://github.com/tekumara/typos-vscode)\n\n#### Custom\n\n`typos` provides several building blocks for custom native integrations\n- `-` reads from `stdin`, `--write-changes` will be written to `stdout`\n- `--diff` to provide a diff\n- `--format json` to get jsonlines with exit code 0 on no errors, code 2 on typos, anything else is an error.\n\nExamples:\n```bash\n# Read file from stdin, write corrected version to stdout\ntypos - --write-changes\n# Creates a diff of what would change\ntypos dir/file --diff\n# Fully programmatic control\ntypos dir/file --format json\n```\n\n### Debugging\n\nYou can see what the effective config looks like by running\n```bash\ntypos --dump-config -\n```\n\nYou can then see how typos is processing your project with\n```bash\ntypos --files\ntypos --identifiers\ntypos --words\n```\n\nIf you need to dig in more, you can enable debug logging with `-v`\n\n## FAQ\n\n### Why was ... not corrected?\n\n**Does the file show up in `typos --files`?**\nIf not, check your config with `typos --dump-config -`.\nThe `[files]` table controls how we walk files.\nIf you are using `files.extend-exclude`,\nare you running into [#593](https://github.com/crate-ci/typos/issues/593)?\nIf you are using `files.ignore-vcs = true`,\nis the file in your `.gitignore` but git tracks it anyways?\nPrefer allowing the file explicitly (see [#909](https://github.com/crate-ci/typos/issues/909)).\n\n**Does the identifier show up in `typos --identifiers` or the word show up in `typos --words`?**\nIf not, it might be subject to one of typos' heuristics for\ndetecting non-words (like hashes) or\nunambiguous words (like words after a `\\` escape).\n\nIf it is showing up, likely `typos` doesn't know about it yet.\n\n`typos` maintains a list of known typo corrections to keep the false positive\ncount low so it can safely run unassisted.\n\nThis is in contrast to most spell checking UIs people use where there is a\nknown list of valid words.  In this case, the spell checker tries to guess your\nintent by finding the closest-looking word.  It then has a gauge for when a\nword isn't close enough and assumes you know best.  The user has the\nopportunity to verify these corrections and explicitly allow or reject them.\n\nFor more on the trade offs of these approaches, see [Design](docs/design.md).\n\n- To correct it locally, see also our [False Positives documentation](#false-positives).\n- To contribute your correction, see [Contribute](CONTRIBUTING.md)\n\n[Crates.io]: https://crates.io/crates/typos-cli\n[Documentation]: https://docs.rs/typos\n\n",
    "bugtrack_url": null,
    "license": "MIT OR Apache-2.0",
    "summary": "Source Code Spelling Correction",
    "version": "1.20.8",
    "project_urls": {
        "Source Code": "https://github.com/crate-ci/typos"
    },
    "split_keywords": [
        "development",
        " spelling"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "737dec6f5c1024c198be900bbf36ec99fbdf728808e3aa21634a389493625099",
                "md5": "b1846b5730ccf174a9fe458bd5805e7c",
                "sha256": "c93dd0ece5bba91d596da76c7970ed76a6ee18a93568bb70822fc3053539d1a7"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1846b5730ccf174a9fe458bd5805e7c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 4651519,
            "upload_time": "2024-04-12T21:06:43",
            "upload_time_iso_8601": "2024-04-12T21:06:43.791723Z",
            "url": "https://files.pythonhosted.org/packages/73/7d/ec6f5c1024c198be900bbf36ec99fbdf728808e3aa21634a389493625099/typos-1.20.8-py3-none-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7694555a2eb17882bd5c900fa8092b0d393ba66720c2f4a0100e285f86a8fbfb",
                "md5": "8a70b397f0ffcf33a79628f5f31e03ea",
                "sha256": "2cc408c502804deb5a3c39f6905aa7cf08f1d028ba699d165e857d8efe319a02"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8a70b397f0ffcf33a79628f5f31e03ea",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 4630734,
            "upload_time": "2024-04-12T21:06:46",
            "upload_time_iso_8601": "2024-04-12T21:06:46.683628Z",
            "url": "https://files.pythonhosted.org/packages/76/94/555a2eb17882bd5c900fa8092b0d393ba66720c2f4a0100e285f86a8fbfb/typos-1.20.8-py3-none-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46cb4b88b50013a5d3ff31665b3c2686a9b528feb5304d635fbfffa5978713a7",
                "md5": "2d637c06c0a09c6c81d2e97fad3e9360",
                "sha256": "143d63f6f81010901f44be4c0896187823f6afc605899ad2d808625185cd9f33"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2d637c06c0a09c6c81d2e97fad3e9360",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7278558,
            "upload_time": "2024-04-12T21:06:48",
            "upload_time_iso_8601": "2024-04-12T21:06:48.995776Z",
            "url": "https://files.pythonhosted.org/packages/46/cb/4b88b50013a5d3ff31665b3c2686a9b528feb5304d635fbfffa5978713a7/typos-1.20.8-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e51e8a29bbd98a806490ec83520a4d8dc246af7610f706f4c1958ff58d4da787",
                "md5": "cd1eb19fffd1fb64bda506a26e86ff33",
                "sha256": "8015aa9c8b135fc0fb2b47515dff64a3888f0249250b71a08f5d6861f3c40c5e"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cd1eb19fffd1fb64bda506a26e86ff33",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 5206815,
            "upload_time": "2024-04-12T21:06:51",
            "upload_time_iso_8601": "2024-04-12T21:06:51.336130Z",
            "url": "https://files.pythonhosted.org/packages/e5/1e/8a29bbd98a806490ec83520a4d8dc246af7610f706f4c1958ff58d4da787/typos-1.20.8-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab4336726d90a68a7ff6d1800513055208c1f1415e36c913cfa33f158349cc01",
                "md5": "229b5cfe61f3182eb5711adb7f9e72d1",
                "sha256": "5bc9fb81170c1d3ea8f71375c020ae836fe0d18bf3fb4a7fcc9b468f12047dcd"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "229b5cfe61f3182eb5711adb7f9e72d1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6190502,
            "upload_time": "2024-04-12T21:06:53",
            "upload_time_iso_8601": "2024-04-12T21:06:53.479467Z",
            "url": "https://files.pythonhosted.org/packages/ab/43/36726d90a68a7ff6d1800513055208c1f1415e36c913cfa33f158349cc01/typos-1.20.8-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d280714bc28f53c8a687c40a2865d37f679289a2cbb5fda086a5280bab5b05a8",
                "md5": "b6d2fdde0e60a531ecd44ac781e9ac70",
                "sha256": "d207f0c95a895bb7b9e63bc3136475ebb920201daf950db0dbf2246513fd6200"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b6d2fdde0e60a531ecd44ac781e9ac70",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 5951851,
            "upload_time": "2024-04-12T21:06:55",
            "upload_time_iso_8601": "2024-04-12T21:06:55.347500Z",
            "url": "https://files.pythonhosted.org/packages/d2/80/714bc28f53c8a687c40a2865d37f679289a2cbb5fda086a5280bab5b05a8/typos-1.20.8-py3-none-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a03c9ce03bba4dab4e4ecba8ff10ec4d6f1c834d9a4d055c9f5ff8720ee102e",
                "md5": "981f8c931a8e6507e28381c88845a2bc",
                "sha256": "b9bd4f33a4c0deaa205d5c094bd4f71071ba8eef4bba58015a4d9485c2154e45"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "981f8c931a8e6507e28381c88845a2bc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 6296938,
            "upload_time": "2024-04-12T21:06:57",
            "upload_time_iso_8601": "2024-04-12T21:06:57.652972Z",
            "url": "https://files.pythonhosted.org/packages/8a/03/c9ce03bba4dab4e4ecba8ff10ec4d6f1c834d9a4d055c9f5ff8720ee102e/typos-1.20.8-py3-none-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cb383021838e162ec87d6b6ac4dd46bd935e7cc6095abebf241b22e633ba07f",
                "md5": "9fc70ba41de2d46c1770e99817a4ed0a",
                "sha256": "902a5d639cd445505370fcf6afa0107ffe5d5f0b9acbce0a22c256167a58933f"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9fc70ba41de2d46c1770e99817a4ed0a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 2822400,
            "upload_time": "2024-04-12T21:06:59",
            "upload_time_iso_8601": "2024-04-12T21:06:59.432434Z",
            "url": "https://files.pythonhosted.org/packages/4c/b3/83021838e162ec87d6b6ac4dd46bd935e7cc6095abebf241b22e633ba07f/typos-1.20.8-py3-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dadd0d993b5961dc9ef5628c9fff795d2853c30a40144752dfe38a6ca396b28c",
                "md5": "699bb7b273d5b9c6f2559650dfa92058",
                "sha256": "2a8c3acb4c057cc274831adca7c253cd74ee249b67f25bd449faaa26aa3b12ce"
            },
            "downloads": -1,
            "filename": "typos-1.20.8-py3-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "699bb7b273d5b9c6f2559650dfa92058",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 2968650,
            "upload_time": "2024-04-12T21:07:01",
            "upload_time_iso_8601": "2024-04-12T21:07:01.203638Z",
            "url": "https://files.pythonhosted.org/packages/da/dd/0d993b5961dc9ef5628c9fff795d2853c30a40144752dfe38a6ca396b28c/typos-1.20.8-py3-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "acbb558da83cb1c6cdf467c29a49c022aaf50a733d78c3bb02c05e259f302a47",
                "md5": "0bf889991d0ea18d158e573d51ae5e47",
                "sha256": "2f02b7560b9fbc57a4e178d01a02e85bc4ef83afc2236f2a42fc3bceb4b56f4d"
            },
            "downloads": -1,
            "filename": "typos-1.20.8.tar.gz",
            "has_sig": false,
            "md5_digest": "0bf889991d0ea18d158e573d51ae5e47",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1664406,
            "upload_time": "2024-04-12T21:07:02",
            "upload_time_iso_8601": "2024-04-12T21:07:02.988015Z",
            "url": "https://files.pythonhosted.org/packages/ac/bb/558da83cb1c6cdf467c29a49c022aaf50a733d78c3bb02c05e259f302a47/typos-1.20.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-12 21:07:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "crate-ci",
    "github_project": "typos",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "typos"
}
        
Elapsed time: 0.23988s