0.1.9 • Published 4 years ago

cra-template-typescript-context v0.1.9

Weekly downloads
33
License
-
Repository
github
Last release
4 years ago

This project was bootstrapped with Create React App.

How to install

```
npx create-react-app your-app-name --template cra-template-typescript-context
```

Runs the app in the development mode. Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits. You will also see any lint errors in the console.

Add the following in package.json

"husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts,tsx}": [
      "npm run format",
      "npm run lint:fix"
    ]
  },