add mention of linter

This commit is contained in:
Peter Steinberger 2025-06-17 01:12:13 +02:00
parent 52fda3d996
commit df4053282c

View file

@ -11,4 +11,11 @@
- Focus on editing source files, not built artifacts
## Server Execution
- NEVER RUN THE SERVER YOURSELF, I ALWAYS RUN IT ON THE SIDE VIA NPM RUN DEV!
- NEVER RUN THE SERVER YOURSELF, I ALWAYS RUN IT ON THE SIDE VIA NPM RUN DEV!
## Code Quality
- ESLint and Prettier are configured for the project
- Run `npm run lint` to check for linting issues
- Run `npm run lint:fix` to automatically fix most issues
- Run `npm run format` to format all code with Prettier
- Run `npm run format:check` to check formatting without changing files