11 lines
191 B
Makefile
11 lines
191 B
Makefile
# Justfile for cc-libs
|
|
# Run `just check` to lint all Lua code with luacheck.
|
|
|
|
# List available recipes.
|
|
default:
|
|
@just --list
|
|
|
|
# Lint all Lua source with luacheck.
|
|
check:
|
|
luacheck .
|