Here's how to get started:
conda add typos-cli
brew install typos-cli
typos-cli
using conda
, pacman
. Check the installation for details on installing packages from other channels.typos
error: `Bui` should be `Buoy`, `Buy`
--> ./nuxt.config.ts:68:22
|
68 | me: 'Anh Thang Bui',
| ^^^
|
error: `Bui` should be `Buoy`, `Buy`
--> ./README.md:2:32
|
2 | <h1 align="center">Anh Thang Bui</h1>
| ^^^
|
typos-cli
won't automatically change your code, but it will highlight the typos and suggest corrections. You can review the suggestions and make the necessary changes or have them fixedtypos --write-changes
typos -w
typos-cli
is a powerful tool, but it might flag names or data coming from third-party APIs as typos.Bonus: Integrate typos-cli
into your CI pipeline to catch typos early and often.
By using crate-ci/typos, you can keep your code clean and professional!
Compare 1Password vs Bitwarden
I wanted to share a quick comparison of two password managers I recently tested.
Automatically Creating New Users in Supabase with SQL Triggers
Supabase's built-in authentication system handles user creation securely. However, you might want to automate the creation of additional user data (like profiles) upon signup. This can be achieved using PostgreSQL triggers within Supabase.