You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .pre-commit-config.yaml
-15Lines changed: 0 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,3 @@ repos:
23
23
- id: pylint
24
24
name: pylint (library code)
25
25
types: [python]
26
-
exclude: "^(docs/|examples/|tests/|setup.py$)"
27
-
- repo: local
28
-
hooks:
29
-
- id: pylint_examples
30
-
name: pylint (examples code)
31
-
description: Run pylint rules on "examples/*.py" files
32
-
entry: /usr/bin/env bash -c
33
-
args: ['([[ ! -d "examples" ]] || for example in $(find . -path "./examples/*.py"); do pylint --disable=missing-docstring,invalid-name $example; done)']
34
-
language: system
35
-
- id: pylint_tests
36
-
name: pylint (tests code)
37
-
description: Run pylint rules on "tests/*.py" files
38
-
entry: /usr/bin/env bash -c
39
-
args: ['([[ ! -d "tests" ]] || for test in $(find . -path "./tests/*.py"); do pylint --disable=missing-docstring $test; done)']
0 commit comments