From 9eaf9552c1f730caaa6eaffdc80c2d4b888bee2d Mon Sep 17 00:00:00 2001 From: Justin Dietz Date: Thu, 24 Oct 2019 10:02:46 -0700 Subject: [PATCH] docs(contributing): correct lint fix command --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5b560f3767..8802ead580 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -224,7 +224,7 @@ All the [semantic-release](https://github.com/semantic-release) repositories use Before pushing your code changes make sure there are no linting errors with `npm run lint`. **Tips**: -- Most linting errors can be automatically fixed with `npm run lint --fix`. +- Most linting errors can be automatically fixed with `npm run lint -- --fix`. - Install the [XO plugin](https://github.com/sindresorhus/xo#editor-plugins) for your editor to see linting errors directly in your editor and automatically fix them on save. ### Tests