UNPKG

cross-check

Version:

Multi-project, project level linting

16 lines (12 loc) 225 B
# workaround on macOS so we can adjust the path SHELL := /bin/bash # include node_modules in the path PATH := ./node_modules/.bin:$(PATH) test: unit lint .PHONY: test unit: mocha .PHONY: unit lint: eslint . .PHONY: lint