From aebb2fcd2551caa063c126a35dbb22ec72f2b616 Mon Sep 17 00:00:00 2001 From: Thijs Schreijer Date: Thu, 9 Nov 2023 20:14:20 +0100 Subject: chore(*): config files --- .busted | 7 +++++++ .editorconfig | 27 +++++++++++++++++++++++++++ .gitignore | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 82 insertions(+), 2 deletions(-) create mode 100644 .busted create mode 100644 .editorconfig diff --git a/.busted b/.busted new file mode 100644 index 0000000..ca66496 --- /dev/null +++ b/.busted @@ -0,0 +1,7 @@ +return { + default = { + verbose = true, + coverage = false, + output = "gtest", + }, +} diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..89cb381 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,27 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true +charset = utf-8 + +[*.lua] +indent_style = space +indent_size = 4 + +[*.lua] +indent_style = space +indent_size = 2 + +[*.rockspec] +indent_style = space +indent_size = 2 + +[*.md] +indent_style = space +indent_size = 2 + +[Makefile] +indent_style = tab +indent_size = 4 diff --git a/.gitignore b/.gitignore index 65b45dd..cb10c0a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,52 @@ -**/.*.swp -**/.*.swo +# Compiled Lua sources +luac.out + +# LuaCov files +*.report.out +*.stats.out + +# luarocks build files +*.rock +*.zip +*.tar.gz + +# Object files *.o +*.os +*.ko *.obj +*.elf + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo +*.def +*.exp + +# Shared objects (inc. Windows DLLs) *.dll *.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# VIM files +**/.*.swp +**/.*.swo + +# VS Code files +.vscode/ + -- cgit v1.2.3-55-g6feb