Replies: 1 comment 3 replies
-
|
Two things: Possible issuesI think the issue is that US English is used by default. The "@cspell/spellchecker": [
1,
{
"autoFix": false,
"checkComments": true,
"checkIdentifiers": true,
"checkJSXText": true,
"checkStringTemplates": true,
"checkStrings": true,
"generateSuggestions": true,
"ignoreImportProperties": true,
"ignoreImports": true,
"numSuggestions": 8,
"cspell": {
"language": "en-gb", // or "en-gb,en-us" to use both dictionaries.
}
}
],Plugin-SettingsIt isn't easy for I hope this helps. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Everything is mostly working great, but occasionally I'm getting specialty words flagged, in this case "anonymization".
OK then,
eslint.config.jsis simple:Running
eslint --print-configgives us:CLI tool trace shows this word exists in multiple dicts:
❓ But how do I tell which dictionaries are being used by
cspell-eslint-pluginright now?Ideally I would get a list and then I'd be able to append a chosen dictionary to it, or what's the alternative?
Beta Was this translation helpful? Give feedback.
All reactions