We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0670d09 commit 130dd8eCopy full SHA for 130dd8e
.pre-commit-config.yaml
@@ -1,4 +1,6 @@
1
-# https://pre-commit.com/
+ci:
2
+ skip: [pylint]
3
+
4
repos:
5
- repo: https://github.com/pre-commit/pre-commit-hooks
6
rev: v4.5.0
@@ -24,3 +26,12 @@ repos:
24
26
hooks:
25
27
- id: isort
28
args: ['--profile', 'black']
29
+ - repo: local
30
+ hooks:
31
+ - id: pylint
32
+ name: pylint
33
+ entry: pylint
34
+ language: system
35
+ types: [python]
36
+ args: ["-rn", "-sn", "--fail-on=I"]
37
+ exclude: "tests/input/"
0 commit comments