From 1e982ad64ecd16809ef2d93ec99af520f4317aba Mon Sep 17 00:00:00 2001 From: IamPyu Date: Mon, 9 Dec 2024 16:31:56 -0600 Subject: [PATCH] Add .editorconfig file and .luarc.json file --- .editorconfig | 5 +++++ .luarc.json | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 .editorconfig create mode 100644 .luarc.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..d60c879 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,5 @@ +root = true + +[*.lua] +indent_style = space +indent_size = 2 diff --git a/.luarc.json b/.luarc.json new file mode 100644 index 0000000..24ba3f5 --- /dev/null +++ b/.luarc.json @@ -0,0 +1,6 @@ +{ + "diagnostics.globals": [ + "core", + "vector" + ] +}