From d9d6403cda5226d4cf109fcecc3bba68273c1b0d Mon Sep 17 00:00:00 2001 From: Kiwi Date: Mon, 18 Mar 2019 10:52:51 +0100 Subject: [PATCH] feat: add word about linters --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aaa55a0b4..991b836ba 100644 --- a/README.md +++ b/README.md @@ -165,9 +165,12 @@ npm run watch When the client code has been built, the previous command will open your web browser at http://127.0.0.1:8080/ automatically otherwise navigate there manually. -To run the tests execute the following command: +To run linting and tests use the following commands: ```bash +# Run the linters. +npm run lint + # Run our unit and integration tests. npm run test ```