Skip to content

Commit

Permalink
Add pylint in the pre-commit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Nov 4, 2023
1 parent 0670d09 commit 130dd8e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# https://pre-commit.com/
ci:
skip: [pylint]

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
Expand All @@ -24,3 +26,12 @@ repos:
hooks:
- id: isort
args: ['--profile', 'black']
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
language: system
types: [python]
args: ["-rn", "-sn", "--fail-on=I"]
exclude: "tests/input/"

0 comments on commit 130dd8e

Please sign in to comment.