Jason Dent
Jason Dent
@Zamiell, Thank you for sharing! I have opened a document in #4127 to start collecting thoughts on this issue.
@wvhulle, > This gives me `Configuration Error: Failed to read config file: "/home/.../cspell-node.config.js"` You might need to make it a `.cjs` file if you are running it in a "module"...
@samthecodingman, The initial implementation has been completed. **`cspell.config.yaml`** ```yaml flagWords: - blacklist->denylist # `:` is also ok - "blacklists: denylists, deny list" - | whitelist->allowlist whitelists->allowlists whitelisted->allowlisted whitelisting->allowlisting whitelistings->allowlistings -...
`flagWords` and `suggestWords` support the `:` format. Both `:` or `->` work to specify suggestions.
@reilnuud, Two things: 1. The api changed slightly since the example was written. `getDefaultSettings ` now returns a Promise. ```diff const settings = { - ...getDefaultSettings(), + ...(await getDefaultSettings()), enabledLanguageIds:...
@gituserjava, Since you are running `cspell` as part of your service, this is a feature you can easily implement in your server side code.
It is necessary to explicitly ignore character sets. By default, the spell checker checks all text. It is possible to tell the spell checker to ignore a character set using...
@aminya, That is a needed enhancement.
@lumikrynd, It would be helpful if you could create an example repo with the issue. That would make an investigation easier. You can also turn off the `.gitignore` feature: `Settings`...
@simon8233, The spell checker uses VS Code [Diagnostic](https://code.visualstudio.com/api/references/vscode-api#Diagnostic)s to report issues. VS Code controls how it is displayed. You can change it in settings: `spell diagnostic level` Was this what...