diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 50 |
1 files changed, 48 insertions, 2 deletions
@@ -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 | |||