docs/docs/contributing-guide/troubleshooting/eslint.md
ESLint as a code quality tool is a tool that checks your code for errors and helps you to fix them and enforces a coding style.
ESLint.:::tip
For VSCode users, you can set the formatter to ESLint in the settings.json.
:::
npm install
npm install --prefix server
npm install --prefix frontend
npm run --prefix server lint
npm run --prefix frontend lint
npm run --prefix server format
npm run --prefix frontend format
:::tip
It is recommended to check the VSCode Setting.json(Press ctrl/cmnd + P and search >Settings (JSON)) file to ensure there are no overrides to the eslint config rules. Comment the following rules for eslint: eslint.options: {...}.
:::