-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23173bf
commit 05cb73f
Showing
3 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
for modname in super_sam super_sam_ambience super_sam_highscore super_sam_nodes super_sam_game_elements super_sam_hud super_sam_level | ||
for modname in super_sam super_sam_ambience super_sam_highscore super_sam_nodes super_sam_game_elements super_sam_hud super_sam_level super_sam_map | ||
do | ||
sh -c "cd mods/${modname} && luacheck ." | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
exclude_files = { | ||
"data/*" | ||
} | ||
|
||
globals = { | ||
"travelnet" | ||
} | ||
|
||
read_globals = { | ||
-- Stdlib | ||
string = {fields = {"split", "trim"}}, | ||
table = {fields = {"copy", "getn"}}, | ||
|
||
-- Minetest | ||
"minetest", "vector", "ItemStack", | ||
"dump", "dump2", | ||
"VoxelArea", "AreaStore", | ||
|
||
-- mods | ||
"mapsync" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters