diff options
author | 2021-05-17 18:04:16 +0100 | |
---|---|---|
committer | 2021-05-17 18:04:30 +0100 | |
commit | e9f6501fb6c32e60f717ed523e770ca90b037d1d (patch) | |
tree | 4222d5e1d180c7cfc71bfb18b7b68775bf1d1902 /.pre-commit-config.yaml | |
parent | Merge pull request #504 from doublevcodes/patch-1 (diff) |
Replace pipenv with poetry
Including the pre-commit config here too, so I can actually lint
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r-- | .pre-commit-config.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a66bf97c..4fe7b689 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -18,8 +18,8 @@ repos: hooks: - id: flake8 name: Flake8 - description: This hook runs flake8 within our project's pipenv environment. - entry: pipenv run flake8 + description: This hook runs flake8 within our project's environment. + entry: poetry run task flake8 language: system types: [python] require_serial: true |