Vscode-spell-checker: Disable for other languages ?

Created on 28 Jul 2019  路  3Comments  路  Source: streetsidesoftware/vscode-spell-checker

Hi, I was wondering if there is a way to disable the spell checker for other languages that doesn't have the same latin characters, for example Arabic or Bengali or Japanese.

FAQ

Most helpful comment

There is an indirect way of doing it by having the spell checker ignore it.

If you add ignoreRegExpList to cspell.json or in the VS Code settings cSpell.ignoreRegExpList.

Example for Arabic:

"ignoreRegExpList": [
    "/[\\u0621-\\u064A]+/"
]

All 3 comments

There is an indirect way of doing it by having the spell checker ignore it.

If you add ignoreRegExpList to cspell.json or in the VS Code settings cSpell.ignoreRegExpList.

Example for Arabic:

"ignoreRegExpList": [
    "/[\\u0621-\\u064A]+/"
]

Thanks Jason, that solved the problem!

There is an indirect way of doing it by having the spell checker ignore it.

If you add ignoreRegExpList to cspell.json or in the VS Code settings cSpell.ignoreRegExpList.

Example for Arabic:

"ignoreRegExpList": [
    "/[\\u0621-\\u064A]+/"
]

Works for Persian too. thanks
js "cSpell.ignoreRegExpList": [ "/[\\u0621-\\u064A]+/" ]

Was this page helpful?
0 / 5 - 0 ratings