From 4dfa033f0b4fe3d5a6c153d81d16a73b6ef2e7bb Mon Sep 17 00:00:00 2001 From: Aarni Halinen Date: Mon, 29 Mar 2021 01:49:07 +0300 Subject: [PATCH] fix pycodestyle config path --- .gitlab-ci.yml | 2 +- readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc9fa78..2a58095 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,7 +40,7 @@ lint:py: needs: [] script: - pip install pycodestyle - - pycodestyle --config=setup.cfg --count . + - pycodestyle --config=pycodestyle.cfg --count . lint:js: image: node:14 diff --git a/readme.md b/readme.md index bd0e4be..bbd9293 100644 --- a/readme.md +++ b/readme.md @@ -94,7 +94,7 @@ Merge requests to `master` should be reviewed by multiple developers. Only a mod Lint python files using `pycodestyle` with ```bash -pycodestyle --config=setup.cfg --count . +pycodestyle --config=pycodestyle.cfg --count . ``` Lint javascript and markdown using `eslint` and `remark` with