peacelovecookies/frontend-project-lvl2

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
test:
    npm test

make install:
    npm install

lint:
    npx eslint .

fix:
    npx eslint --fix .

publish:
    npm publish

.PHONY: test