Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 937 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 937 Bytes

VSCode .typo

.typo fix your typo automatticaly✅

CleanShot 2023-05-20 at 17 15 51

Install

You can install from Marketplace.

Extension Settings

Create a config file named .typo at the root of your project.

Configurations should be written in JSON format, where the key is the correct word and the value is an array of common typos.

{
  "CorrectWord": ["Typo1", "Typo2", "Typo3"]
}

Forexample:

projectRoot/.typo

{
  "const": ["cosnt"],
  "import": ["imort", "improt"],
}

With this configuration, cosnt will be fixed to const, while imort and improt will be fixed to import when the file is saved.

Release Notes

See Change Log