UNPKG
cross-check
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
0.0.1
Multi-project, project level linting
github.com/building5/cross-check
building5/cross-check
cross-check
/
Makefile
16 lines
(12 loc)
•
225 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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