Files
evolved.lua/.luarc.json
2025-11-24 13:35:34 +07:00

37 lines
935 B
JSON

{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"completion": {
"autoRequire": false
},
"diagnostics": {
"groupSeverity": {
"ambiguity": "Warning",
"await": "Warning",
"codestyle": "Warning",
"conventions": "Warning",
"duplicate": "Warning",
"global": "Warning",
"luadoc": "Warning",
"redefined": "Warning",
"strict": "Warning",
"strong": "Warning",
"type-check": "Warning",
"unbalanced": "Warning",
"unused": "Warning"
}
},
"runtime": {
"version": "LuaJIT",
"pathStrict": true
},
"workspace": {
"ignoreDir": [
".vscode",
"develop/3rdparty"
],
"library": [
"${3rd}/love2d/library"
]
}
}