- Install the "ESLint" extension
- In the
settings.json
, add these properties :
"eslint.format.enable": true,
"eslint.workingDirectories": [
"front"
],
"javascript.preferences.quoteStyle": "single"
// if nvm not installed : https://github.com/nvm-sh/nvm
nvm use
npm i
// Start in development mode (with hot reload)
npm run dev
// Build the project for production environment
npm run build
// List errors from ESLint
npm run lint