You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
401 B
19 lines
401 B
5 years ago
|
repos:
|
||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
rev: master
|
||
|
hooks:
|
||
|
- id: check-ast
|
||
|
- id: check-json
|
||
|
- id: check-xml
|
||
|
- id: check-yaml
|
||
|
- repo: local
|
||
|
hooks:
|
||
|
- id: pylint
|
||
|
name: pylint
|
||
|
entry: pylint
|
||
|
language: system
|
||
|
types: [python]
|
||
|
exclude: '^(pyextra)|(external)/'
|
||
|
args:
|
||
|
- --disable=R,C,W
|