Project to teach Playwright from scratch.
- Install Node
- Clone this repository
- Install dependencies using:
npm install
- You are ready to go.
Open a terminal to the root of your project and run the following command:
npx eslint .
Open a terminal to the root of your project and run the following command:
npx prettier --write .
- Install Husky after cloning this project using:
npx husky install
- Then:
npx husky add .husky/pre-commit "npx lint-staged"
- Now, when you commit a change your changes will be audited.