From 6912ec69a685e558dcfe4d345115cd2ba4ed403d Mon Sep 17 00:00:00 2001 From: Michael Nwani Date: Sun, 13 Oct 2019 19:51:28 -0400 Subject: [PATCH] Improve (slightly) sentence grammar in User Guide Added a missing hyphen among other tiny things --- docs/user-guide/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guide/README.md b/docs/user-guide/README.md index abf2390c9..ff3d6b99c 100644 --- a/docs/user-guide/README.md +++ b/docs/user-guide/README.md @@ -47,7 +47,7 @@ module.exports = { See [the rule list](../rules/README.md) to get the `extends` & `rules` that this plugin provides. :::warning Reporting rules -By default all rules from **base** and **essential** categories report ESLint errors. Other rules - because they're not covering potential bugs in the application report warnings. What does it mean? By default - nothing, but if you want - you can set up a treshold and break the build after a certain amount of warnings, instead of any. More informations [here](https://eslint.org/docs/user-guide/command-line-interface#handling-warnings). +By default all rules from **base** and **essential** categories report ESLint errors. Other rules - because they're not covering potential bugs in the application - report warnings. What does it mean? By default - nothing, but if you want - you can set up a treshold and break the build after a certain amount of warnings, instead of any. More informations [here](https://eslint.org/docs/user-guide/command-line-interface#handling-warnings). ::: ### Running ESLint from command line @@ -62,7 +62,7 @@ eslint "src/**/*.{js,vue}" ``` ::: tip -If you installed [@vue/cli-plugin-eslint](https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint) you should have `lint` script added in your `package.json`. That means you can just run `yarn lint` or `npm run lint`. +If you installed [@vue/cli-plugin-eslint](https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint), you should have the `lint` script added to your `package.json`. That means you can just run `yarn lint` or `npm run lint`. ::: #### How to use custom parser?