# 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 apis programs servers startup install.lua
