loukas-kotas / ng-d3-graphs

d3.js graphs integrated in Angular
https://loukaskotas.com/ng-d3-graphs/#/index
MIT License
1 stars 1 forks source link

Add husky lib and config hooks #63

Open loukas-kotas opened 4 years ago

loukas-kotas commented 4 years ago

General

Install husky and run lint checking and type-checking before each commit.

DoD

Do after:

loukas-kotas commented 4 years ago

pre-commit hook example

add to package.json below "devDependencies"

    "husky": {
        "hooks": {
            "pre-commit": "lint-staged && npm run typecheck"
        }
    },