From d83fcac163f0e7189aac71ffbddf320b2b78f2fb Mon Sep 17 00:00:00 2001 From: Santiago Gonzalez Toral Date: Fri, 6 Mar 2020 14:42:45 -0500 Subject: [PATCH] Update contributing docs on styling and linting standards --- docs/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index a811d791706..f4aa73dd19f 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -141,7 +141,7 @@ To keep the style of the Javascript code consistent we have a basic linting conf ### Step 4: Commit -1. Ensure your code changes adhere to our styling and linting standards: `npm run eslint:fix; npm run stylelint:fix; isort -rc --atomic .` +1. Ensure your code changes adhere to our styling and linting standards: `make fix` (or `npm run eslint:fix; npm run stylelint:fix; isort -rc --atomic .; yapf -i -r -e "app/**/migrations/*.py" -e "app/app/settings.py" -p app/app/ app/avatar/ app/credits/ app/dataviz/ app/enssubdomain/ app/ethos/ app/github/`) 2. List all your changes as a list if needed else simply give a brief description on what the changes are. 3. All lines at 100 columns. 4. If your PR fixed an issue, Use the `Fixes:` prefix and the full issue URL. For other references use `Refs:`.