mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 09:33:10 -07:00
766 B
766 B
VS Code Spell Checker Settings
Add this to your VS Code workspace settings (.vscode/settings.json) for the best spell checking experience:
{
"cSpell.enabled": true,
"cSpell.showCommandsInEditorContextMenu": true,
"cSpell.showStatus": true,
"cSpell.diagnosticLevel": "Warning",
"cSpell.checkLimit": 500,
"cSpell.numSuggestions": 8,
"cSpell.suggestionMenuType": "quickPick",
"cSpell.allowCompoundWords": true,
"cSpell.enableFiletypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"markdown",
"json",
"css",
"html"
],
"cSpell.ignorePaths": [
"node_modules/**",
"dist/**",
"dist-electron/**",
"**/*.min.js",
"**/*.min.css",
"package-lock.json"
]
}