Commit 5366bd92 authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

Merge branch 'chore-remove-references-to-poetry' into 'main'

chore: remove references to poetry

See merge request just-ci/templates!187
parents 9b55a71d bfdb150c
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -15,14 +15,12 @@ repos:
      - id: mixed-line-ending
        args: ["--fix=lf"]
        description: Forces to replace line ending by the UNIX 'lf' character.
  - repo: local

  - repo: https://github.com/adrienverge/yamllint
    rev: v1.32.0
    hooks:
      - id: system
        name: yamllint
        entry: poetry run yamllint .
        pass_filenames: false
        always_run: true
        language: system
      - id: yamllint

  - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
    rev: v2.2.0
    hooks:
+4 −5
Original line number Diff line number Diff line
@@ -32,11 +32,10 @@ We use pre-commit hooks in this project. You don't have to use them, but if you
want you can install them this way:

```bash
pip3 install poetry
poetry install
poetry run pre-commit install
poetry run pre-commit install --hook-type commit-msg
poetry run pre-commit install --hook-type post-commit
pip install pre-commit
pre-commit install
pre-commit install --hook-type commit-msg
pre-commit install --hook-type post-commit
```

### testing