codenothing/Nlint

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
.PHONY: all test

all: test

clean:
    @rm -rf build/results/

lint:
    @node build/lint.js

test: clean lint
    @node build/test.js

test-all:
    @NODE_TEST_NO_SKIP=1 make test

test-full:
    @./build/full.sh