From b5a061723b1a7d80cdbb9d93266a22b4db325aca Mon Sep 17 00:00:00 2001 From: Nishant Nayak Date: Fri, 29 Oct 2021 17:04:11 +0530 Subject: [PATCH] Update pylint to conform to our coding standards --- .github/workflows/pylint.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 7fcdc17..2e6b26e 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -21,5 +21,4 @@ jobs: - name: Analysing the code with pylint continue-on-error: true run: | - pylint `find . -type d -name migrations -prune -o -name '*.py'| grep -v __ |xargs` - + python -m pylint `find . -type d -name migrations -prune -o -name '*.py' | grep -v __ | grep .py` --function-naming-style=camelCase --argument-naming-style=any --variable-naming-style=camelCase --module-naming-style=camelCase