Skip to content

Commit b85372b

Browse files
author
Luke Drummond
committedJan 3, 2015
Added a .gitignore template for Lua based projects.
Added common ignore globs for Lua, an extensible, high-performace, lightweight multi-paradigm language designed for embedded scripting. http://www.lua.org/about.html (More info at https://en.wikipedia.org/wiki/Lua_(programming_language) ) The de-facto package manager for Lua is LuaRocks. http://luarocks.org/ - LuaRocks creates a number of files as part of the build process. These are ignored (*.src.rock, *.tar.gz, *.zip) - Lua modules are conventionally written in C as shared libraries. Common build artifacts for C projects copied from C.gitignore
1 parent 13f15a3 commit b85372b

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
 

‎Lua.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Compiled Lua sources
2+
luac.out
3+
4+
# luarocks build files
5+
*.src.rock
6+
*.zip
7+
*.tar.gz
8+
9+
# Object files
10+
*.o
11+
*.os
12+
*.ko
13+
*.obj
14+
*.elf
15+
16+
# Precompiled Headers
17+
*.gch
18+
*.pch
19+
20+
# Libraries
21+
*.lib
22+
*.a
23+
*.la
24+
*.lo
25+
*.def
26+
*.exp
27+
28+
# Shared objects (inc. Windows DLLs)
29+
*.dll
30+
*.so
31+
*.so.*
32+
*.dylib
33+
34+
# Executables
35+
*.exe
36+
*.out
37+
*.app
38+
*.i*86
39+
*.x86_64
40+
*.hex
41+

0 commit comments

Comments
 (0)
Please sign in to comment.