commit d6e40d2ee944120543c106d18a98a2c56360fa59 parent 181fa05e4bdab8e6edf3819d052a182e376f3abc Author: Steven White <swhitewvu24@gmail.com> Date: Fri, 18 Sep 2015 16:32:36 -0400 Document atom editor setup Diffstat:
| M | docs/how-to-configure-text-editors.md | | | 22 | +++++++++++++++++++++- |
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/docs/how-to-configure-text-editors.md b/docs/how-to-configure-text-editors.md @@ -27,7 +27,27 @@ Enable **CSSComb** by installing CSSReorder plug-in ### Atom -Coming soon. +Install atom packages + +* [linter](https://atom.io/packages/linter) +* [linter-eslint](https://atom.io/packages/linter-eslint) +* [react](https://atom.io/packages/react) + +```shell +apm install linter linter-eslint react +``` + +Install local npm packages + +* [eslint](https://www.npmjs.com/package/eslint) +* [babel-eslint](https://www.npmjs.com/package/babel-eslint) +* [eslint-plugin-react](https://www.npmjs.com/package/eslint-plugin-react) + +```shell +npm install --save-dev eslint babel-eslint eslint-plugin-react +``` + +*You may need to restart atom for changes to take effect* ### SublimeText