.typo fix your typo automatticaly✅
You can install from Marketplace.
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.
See Change Log