Add .gitignore and .luacheckrc

master
Tim 2016-08-05 19:53:55 +02:00
parent d39bd77d12
commit 3459db48e1
2 changed files with 30 additions and 0 deletions

22
.gitignore vendored Normal file
View File

@ -0,0 +1,22 @@
## Files related to minetest development cycle
/*.patch
# GNU Patch reject file
*.rej
## Editors and Development environments
*~
*.swp
*.bak*
*.orig
# Vim
*.vim
# Kate
.*.kate-swp
.swp.*
# Eclipse (LDT)
.project
.settings/
.buildpath
.metadata
# Idea IDE
.idea/*

8
.luacheckrc Normal file
View File

@ -0,0 +1,8 @@
unused_args = false
allow_defined_top = true
read_globals = {
"minetest",
"default",
"vector",
}