From 53b1296e52c2897bc3d7dab6502738881c76a6d4 Mon Sep 17 00:00:00 2001 From: Sean King Date: Sun, 1 Nov 2020 18:58:41 -0700 Subject: [PATCH] Add section in Contributing to Soapbox about text editor tools --- docs/contributing.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/contributing.md b/docs/contributing.md index 4f4749c3b..ba2fa09ac 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -37,3 +37,19 @@ It is recommended that you use the following guidelines to contribute to the Soa Pull Request would represent. The versioning scheme we use is [SemVer](http://semver.org/). 4. You may merge the Pull Request in once you have the sign-off of two other developers, or if you do not have permission to do that, you may request the second reviewer to merge it for you. + +## Text Editor Tools + +If you're using a text editor like [Atom](https://atom.io/) or [Visual Studio Code](https://code.visualstudio.com/), you can install tools to help you get linter feedback while you write code for the Soapbox project. + +For Atom, you can install the following packages: + +* [linter](https://atom.io/packages/linter) +* [linter-ui-default](https://atom.io/packages/linter-ui-default) +* [linter-eslint](https://atom.io/packages/linter-eslint) +* [linter-stylelint](https://atom.io/packages/linter-stylelint) + +For Visual Studio Code, you can install the following extensions: + +* [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) +* [vscode-stylelint](https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint)