From 377f70b987f0b1773fdfb7d34ecbbb77c95cc810 Mon Sep 17 00:00:00 2001 From: Amit Miran <47772523+amitmiran137@users.noreply.github.com> Date: Mon, 18 Jan 2021 09:14:08 +0200 Subject: [PATCH] chore: update explanations about running common tasks like pylint and pre-commit (#12571) --- CONTRIBUTING.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 42bf504fb..01de13620 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -515,13 +515,19 @@ pip3 install -r requirements/integration.txt pre-commit install ``` +Alternatively it possible to run pre-commit via tox: + +```bash +tox -e pre-commit +``` + ## Linting Lint the project with: ```bash # for python -tox -e flake8 +tox -e pylint # for frontend cd superset-frontend