2017-11-30 00:12:15 +00:00
|
|
|
# BEWARE ! Makefiles require the use of hard tabs
|
|
|
|
|
2017-11-30 00:54:19 +00:00
|
|
|
.PHONY: install check lint test
|
2017-11-30 00:12:15 +00:00
|
|
|
|
|
|
|
install:
|
2017-11-30 00:54:19 +00:00
|
|
|
npm install -g csslint eslint eslint-config-strict eslint-plugin-filenames htmlhint htmllint-cli lighthouse
|
2017-11-30 00:12:15 +00:00
|
|
|
pip install pre-commit
|
|
|
|
pre-commit install
|
|
|
|
|
2017-11-30 00:54:19 +00:00
|
|
|
check: eslint
|
2017-11-30 00:12:15 +00:00
|
|
|
pre-commit run --all-files
|
|
|
|
|
2017-11-30 00:54:19 +00:00
|
|
|
eslint:
|
|
|
|
eslint templates/js/*.js
|
|
|
|
|
2017-11-30 00:12:15 +00:00
|
|
|
test:
|
|
|
|
./test_ludochaordic.sh
|