summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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/
+