this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Adding Lua gitignore

+43 -11
+43 -11
.gitignore
··· 1 + # Created by https://www.toptal.com/developers/gitignore/api/lua 2 + # Edit at https://www.toptal.com/developers/gitignore?templates=lua 1 3 2 - # Godot-specific ignores 3 - .import/ 4 - export.cfg 5 - export_presets.cfg 4 + ### Lua ### 5 + # Compiled Lua sources 6 + luac.out 6 7 7 - # Imported translations (automatically generated from CSV files) 8 - *.translation 8 + # luarocks build files 9 + *.src.rock 10 + *.zip 11 + *.tar.gz 9 12 10 - # Mono-specific ignores 11 - .mono/ 12 - data_*/ 13 + # Object files 14 + *.o 15 + *.os 16 + *.ko 17 + *.obj 18 + *.elf 13 19 14 - content/ 15 - content.pck 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) 33 + *.dll 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 + 47 + # End of https://www.toptal.com/developers/gitignore/api/lua