summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThijs Schreijer <thijs@thijsschreijer.nl>2023-11-09 20:14:20 +0100
committerThijs Schreijer <thijs@thijsschreijer.nl>2023-11-09 22:59:06 +0100
commitaebb2fcd2551caa063c126a35dbb22ec72f2b616 (patch)
tree10d333408a3b42167b9f40f7fb742e20409da408
parentac83d941419806a546bd2988eac0669269011719 (diff)
downloadluasystem-aebb2fcd2551caa063c126a35dbb22ec72f2b616.zip
chore(*): config files
-rw-r--r--.busted7
-rw-r--r--.editorconfig27
-rw-r--r--.gitignore50
3 files changed, 82 insertions, 2 deletions
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/
+