1
0
mirror of https://github.com/BlizD/Tasks.git synced 2025-03-17 20:58:01 +02:00

Настройки для Сонара:

Отключил проверки в целом для проекта:
* Каноническое написание ключевых слов (CanonicalSpellingKeywords)
* Справа от символа , не хватает пробела

Возможно позже опять включим.
This commit is contained in:
Anton Ivanov 2020-06-21 10:44:46 +03:00
parent a2b2418e0b
commit e5a1d34dde

17
.bsl-language-server.json Normal file
View File

@ -0,0 +1,17 @@
{
"$schema": "https://1c-syntax.github.io/bsl-language-server/configuration/schema.json",
"language": "en",
"diagnostics": {
"computeTrigger": "onType",
"parameters": {
"CanonicalSpellingKeywords": false,
"MissingSpace": {
"checkSpaceToRightOfUnary": true,
"listForCheckRight": "",
"listForCheckLeft": "",
"allowMultipleCommas": true,
"listForCheckLeftAndRight": "+ - * / = % < > <> <= >="
}
}
}
}