Skip to main content

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

🚀 Using the Typos Plugin​

You can use FluentCI to find and correct spelling mistakes in your source code by running the following command:


fluentci run --wasm typos check

CI/CD Integration​

The following example shows how to integrate FluentCI with popular CI providers to check your source code for spelling mistakes:

ci.yml
name: ci
on:
push:
branches:
- main
jobs:
tasks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Fluent CI
uses: fluentci-io/setup-fluentci@v5
- name: check
run: fluentci run --wasm typos check