rocky-lint
Version:
Linter for Rocky.js projects
21 lines (13 loc) • 509 B
Plain Text
.DEFAULT_GOAL := test
test/rocky.d.ts:
@ echo Link this file from the SDK!; exit 1
test/sdk-tests:
@ echo Link this file from the SDK!; exit 1
test: lint
test-integration-simple:
bin/rocky-lint -d test/rocky.d.ts test/simple.js
test-integration-all: test/rocky.d.ts test/sdk-tests
find test/sdk-tests/*/src/rocky/index.js | xargs -L1 bin/rocky-lint -d test/rocky.d.ts
lint:
@ node_modules/.bin/eslint lib/rocky-lint.js bin/rocky-lint
.PHONY: test lint test-integration-simple test-integration-all