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 6d1712a commit 4af5f63Copy full SHA for 4af5f63
.pre-commit-config.yaml
@@ -1,11 +1,24 @@
1
repos:
2
-- repo: https://github.com/pre-commit/pre-commit-hooks
3
- rev: v4.3.0
4
- hooks:
5
- - id: check-yaml
6
- - id: end-of-file-fixer
7
- - id: trailing-whitespace
+# - repo: https://github.com/pre-commit/pre-commit-hooks
+# rev: v4.3.0
+# hooks:
+# - id: check-yaml
+# - id: end-of-file-fixer
+# - id: trailing-whitespace
8
- repo: https://github.com/psf/black
9
rev: 22.8.0
10
hooks:
11
- - id: black
+ - id: black
12
+- repo: local
13
+ hooks:
14
+ - id: pylint
15
+ name: pylint
16
+ entry: pylint
17
+ language: system
18
+ types: [python]
19
+ args:
20
+ [
21
+ "-rn", # Only display messages
22
+ "-sn", # Don't display the score
23
+ "--rcfile=.pylintrc", # Link to your config file
24
+ ]
0 commit comments