Formatting options and ignoring undefined globals error from linter

This commit is contained in:
Imbus 2024-08-16 12:48:01 +02:00
parent 20bfb3e627
commit 46d657d02b
2 changed files with 11 additions and 0 deletions

5
.luarc.json Normal file
View file

@ -0,0 +1,5 @@
{
"diagnostics.disable": [
"undefined-global"
]
}

6
.stylua.toml Normal file
View file

@ -0,0 +1,6 @@
column_width = 160
line_endings = "Unix"
indent_type = "Spaces"
indent_width = 2
quote_style = "AutoPreferSingle"
call_parentheses = "None"