Skip to content

Commit

Permalink
CI: Make pylint not local
Browse files Browse the repository at this point in the history
  • Loading branch information
gmuloc committed Jun 4, 2024
1 parent b6e6ae4 commit ad7b04c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,23 @@ repos:
- id: ruff-format
name: Run Ruff formatter

- repo: local # as per https://pylint.pycqa.org/en/latest/user_guide/installation/pre-commit-integration.html
- repo: https://github.com/pycqa/pylint
rev: "v3.2.0"
hooks:
- id: pylint
entry: pylint
language: python
name: Check code style with pylint
description: This hook runs pylint.
types: [python]
args:
- -rn # Only display messages
- -sn # Don't display the score
- --rcfile=pyproject.toml # Link to config file
additional_dependencies:
- anta[cli]
- types-PyYAML
- types-requests
- types-pyOpenSSL
- pytest

- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
Expand Down

0 comments on commit ad7b04c

Please sign in to comment.