From 0395221e8ef4259b5f9ea0796c603b604bd18730 Mon Sep 17 00:00:00 2001 From: Steven Rayesky Date: Fri, 7 Feb 2020 14:46:26 -0500 Subject: [PATCH] Add stylelint plugin link and global command --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1a49f69..dcbd215 100644 --- a/README.md +++ b/README.md @@ -938,6 +938,7 @@ To see a list of the rules, refer to the [stylelint-config-standard](https://git - [stylelint-webpack-plugin](https://github.com/webpack-contrib/stylelint-webpack-plugin) - [stylelint PostCSS plugin](https://stylelint.io/user-guide/postcss-plugin) - [gulp-stylelint](https://github.com/olegskl/gulp-stylelint) +- [Stylelint plugins for your code editor](https://stylelint.io/user-guide/complementary-tools#editor-plugins) ##### Auto fix errors Stylelint CLI can autofix as many errors as possible. To use the autofixer append `--fix` to a stylelint command. @@ -945,6 +946,11 @@ Stylelint CLI can autofix as many errors as possible. To use the autofixer appen stylelint "foo/*.scss" --fix ``` +You may have to install stylelint globally: +``` +npm install stylelint -g +``` + **All items (Warnings and Errors) should be addressed to be inline with Front-End Standards defined in this document.** A full breakdown of all available Rules in the SASS Linter are available with the [Documentation](https://stylelint.io/user-guide/rules).