aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: c43eedab7977c91bb110ffb2020baf2d15103fef (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                             
.PHONY: check format check-luacheck check-format

LUA_FILES = $(wildcard *.lua)

# bash's process substitution is used for check-format
SHELL := /bin/bash

check: check-luacheck check-format

check-luacheck:
	luacheck --globals=vis -- $(LUA_FILES)

check-format:
	for f in $(LUA_FILES); do diff $$f <(lua-format $$f) >/dev/null; done

format:
	lua-format -i $(LUA_FILES)