From f464388ef0038505061542d10102b43a3ea26df5 Mon Sep 17 00:00:00 2001 From: "deepesh.verma" Date: Sat, 3 Dec 2022 10:12:38 +0530 Subject: [PATCH] Add step to run lint before raising a PR The PR check fails for lint issues. It will be better to fix them beforehand. --- docs/source/contributing.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/source/contributing.rst b/docs/source/contributing.rst index 90dc52cf..a69f4547 100644 --- a/docs/source/contributing.rst +++ b/docs/source/contributing.rst @@ -57,3 +57,9 @@ Testing the changes - Run `npm run compile`. - Go to the debug panel on the sidebar and launch the development version with the extension loaded (first option in the debug profiles). - Refer to `VS Code Extension Documentation `_ for additional resources. + +Submitting a PR ++++++++++++++++ + +- Please make sure to run `npm run lint` and verify there are no errors/warnings. +- You can run `npm run lint:fix` to fix the lint issues.