From bc77ad58b3db4805c83d4c4480cfdde534c82152 Mon Sep 17 00:00:00 2001 From: Clement Brizard Date: Fri, 20 Dec 2019 00:45:30 +0100 Subject: [PATCH] feat: update README for node and eslint --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b472ccce..8eff6e69 100644 --- a/README.md +++ b/README.md @@ -1 +1,17 @@ -# impactometre \ No newline at end of file +# impactometre +## Pour développer +### Installer Node.js et npm +Avec Linux : +```bash +$ curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - +$ sudo apt-get install -y nodejs +``` +Avec Windows : [télécharger le .msi](https://nodejs.org/dist/v12.14.0/node-v12.14.0-x86.msi) + +### Vérifier la syntaxe +Ce projet respecte les [règles syntaxiques standard](https://standardjs.com/rules.html) de Javascript. Pour vérifier le code : +```bash +$ npx eslint . +``` + + -- GitLab