Makefile 142 B

1234567891011121314
  1. build: toc
  2. .PHONY: alex
  3. alex:
  4. @npx alex README.md
  5. .PHONY: lint
  6. lint:
  7. @npx awesome-lint README.md
  8. .PHONY: toc
  9. toc:
  10. @npx doctoc README.md