Skip to content
This repository has been archived by the owner on Sep 29, 2024. It is now read-only.

Commit

Permalink
docs: Update docs on linting
Browse files Browse the repository at this point in the history
  • Loading branch information
caffeine-addictt committed Mar 24, 2024
1 parent 7a4c3f6 commit 24c7ad3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,17 @@ npm run dev:server # Run development server on server
### Linting

```sh
npm run lint # Run linting on all packages
npm run lint:client # Run linting on client
npm run lint:server # Run linting on server
npm run lint # Run ESLint and Prettier on the whole project
npm run lint:eslint # Run ESLint on all packages
npm run lint:client # Run ESLint on client
npm run lint:server # Run ESLint on server
```

```sh
npm run lint:fix # Run linting on all packages and fix any linting errors
npm run lint:client:fix # Run linting on client and fix any linting errors
npm run lint:server:fix # Run linting on server and fix any linting errors
npm run lint:fix # Run ESLint and Prettier on the whole project
npm run lint:eslint:fix # Run ESLint on all packages and fix any linting errors
npm run lint:client:fix # Run ESLint on client and fix any linting errors
npm run lint:server:fix # Run ESLint on server and fix any linting errors
```

### Testing
Expand Down

0 comments on commit 24c7ad3

Please sign in to comment.