add .luarc.json for lua-language-server and fix a couple of nits (#1296)

This commit is contained in:
Alexander Courtis
2022-05-28 19:16:54 +10:00
committed by GitHub
parent e482bad61c
commit c3b7be8d19
4 changed files with 20 additions and 7 deletions

13
.luarc.json Normal file
View File

@@ -0,0 +1,13 @@
{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"diagnostics": {
"globals": {
"vim": true
},
"disable": {
"lowercase-global": true,
"missing-parameter": true
}
}
}