1
0
forked from redo/BlockLua

Compare commits

...

2 Commits

Author SHA1 Message Date
0815a6d229 Create .editorconfig 2025-10-05 19:51:10 -04:00
cbd0c29495 Create settings.json 2025-10-05 19:50:32 -04:00
2 changed files with 21 additions and 0 deletions

9
.editorconfig Normal file
View File

@@ -0,0 +1,9 @@
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

12
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
"Lua.diagnostics.globals": [
"_bllua_ts",
"_bllua_requiresecure",
"_bllua_on_unload"
],
"Lua.runtime.version": "Lua 5.1",
"Lua.diagnostics.disable": [
"lowercase-global",
"undefined-global"
]
}