Un quiz interactif pour tester vos connaissances des départements français
https://arthurchf.github.io/HexaQuiz/demo
- Install the "ESLint" extension
- In the
settings.json
, add these properties :
"eslint.format.enable": true,
"eslint.workingDirectories": [
"api",
"app"
],
"javascript.preferences.quoteStyle": "single"
API / APP :
// if nvm not installed : https://github.com/nvm-sh/nvm
nvm use
npm i
API :
// Start in development mode (with hot reload)
npm run start:dev
// Build the project for production environment
npm run build
// List errors from ESLint
npm run lint
APP :
// 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