mirror of
https://github.com/Uberi/Minetest-WorldEdit.git
synced 2025-01-11 18:40:28 +01:00
Add code linting with luacheck (#221)
With luacheck mistakes in Lua code can be found, e.g. the use of undefined variables, and the code style can be checked. workflow by @Panquesito7
This commit is contained in:
parent
099d5047bd
commit
eff01bc8e7
15
.github/workflows/check.yml
vendored
Normal file
15
.github/workflows/check.yml
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
on: [push, pull_request]
|
||||||
|
name: Check
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: apt
|
||||||
|
run: sudo apt-get install -y luarocks
|
||||||
|
- name: luacheck install
|
||||||
|
run: luarocks install --local luacheck
|
||||||
|
- name: luacheck run
|
||||||
|
run: $HOME/.luarocks/bin/luacheck ./
|
8
.luacheckrc
Normal file
8
.luacheckrc
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
read_globals = {"minetest", "vector", "VoxelArea", "ItemStack",
|
||||||
|
"table",
|
||||||
|
"unified_inventory", "sfinv", "smart_inventory", "inventory_plus"
|
||||||
|
}
|
||||||
|
globals = {"worldedit"}
|
||||||
|
-- Ignore these errors until someone decides to fix them
|
||||||
|
ignore = {"113", "211", "212", "213", "311", "312", "411", "412", "421", "422",
|
||||||
|
"431", "432", "611", "614", "621", "631"}
|
Loading…
Reference in New Issue
Block a user