diff options
author | Thijs Schreijer <thijs@thijsschreijer.nl> | 2023-11-09 20:14:20 +0100 |
---|---|---|
committer | Thijs Schreijer <thijs@thijsschreijer.nl> | 2023-11-09 22:59:06 +0100 |
commit | aebb2fcd2551caa063c126a35dbb22ec72f2b616 (patch) | |
tree | 10d333408a3b42167b9f40f7fb742e20409da408 | |
parent | ac83d941419806a546bd2988eac0669269011719 (diff) | |
download | luasystem-aebb2fcd2551caa063c126a35dbb22ec72f2b616.tar.gz luasystem-aebb2fcd2551caa063c126a35dbb22ec72f2b616.tar.bz2 luasystem-aebb2fcd2551caa063c126a35dbb22ec72f2b616.zip |
chore(*): config files
-rw-r--r-- | .busted | 7 | ||||
-rw-r--r-- | .editorconfig | 27 | ||||
-rw-r--r-- | .gitignore | 50 |
3 files changed, 82 insertions, 2 deletions
@@ -0,0 +1,7 @@ | |||
1 | return { | ||
2 | default = { | ||
3 | verbose = true, | ||
4 | coverage = false, | ||
5 | output = "gtest", | ||
6 | }, | ||
7 | } | ||
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..89cb381 --- /dev/null +++ b/.editorconfig | |||
@@ -0,0 +1,27 @@ | |||
1 | root = true | ||
2 | |||
3 | [*] | ||
4 | end_of_line = lf | ||
5 | insert_final_newline = true | ||
6 | trim_trailing_whitespace = true | ||
7 | charset = utf-8 | ||
8 | |||
9 | [*.lua] | ||
10 | indent_style = space | ||
11 | indent_size = 4 | ||
12 | |||
13 | [*.lua] | ||
14 | indent_style = space | ||
15 | indent_size = 2 | ||
16 | |||
17 | [*.rockspec] | ||
18 | indent_style = space | ||
19 | indent_size = 2 | ||
20 | |||
21 | [*.md] | ||
22 | indent_style = space | ||
23 | indent_size = 2 | ||
24 | |||
25 | [Makefile] | ||
26 | indent_style = tab | ||
27 | indent_size = 4 | ||
@@ -1,6 +1,52 @@ | |||
1 | **/.*.swp | 1 | # Compiled Lua sources |
2 | **/.*.swo | 2 | luac.out |
3 | |||
4 | # LuaCov files | ||
5 | *.report.out | ||
6 | *.stats.out | ||
7 | |||
8 | # luarocks build files | ||
9 | *.rock | ||
10 | *.zip | ||
11 | *.tar.gz | ||
12 | |||
13 | # Object files | ||
3 | *.o | 14 | *.o |
15 | *.os | ||
16 | *.ko | ||
4 | *.obj | 17 | *.obj |
18 | *.elf | ||
19 | |||
20 | # Precompiled Headers | ||
21 | *.gch | ||
22 | *.pch | ||
23 | |||
24 | # Libraries | ||
25 | *.lib | ||
26 | *.a | ||
27 | *.la | ||
28 | *.lo | ||
29 | *.def | ||
30 | *.exp | ||
31 | |||
32 | # Shared objects (inc. Windows DLLs) | ||
5 | *.dll | 33 | *.dll |
6 | *.so | 34 | *.so |
35 | *.so.* | ||
36 | *.dylib | ||
37 | |||
38 | # Executables | ||
39 | *.exe | ||
40 | *.out | ||
41 | *.app | ||
42 | *.i*86 | ||
43 | *.x86_64 | ||
44 | *.hex | ||
45 | |||
46 | # VIM files | ||
47 | **/.*.swp | ||
48 | **/.*.swo | ||
49 | |||
50 | # VS Code files | ||
51 | .vscode/ | ||
52 | |||