mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-01 19:42:07 +08:00
12a306021d
old-commit-hash: 29aaa44740b5dae3c1cc0c273c72c7eb53135e5e
26 lines
566 B
YAML
26 lines
566 B
YAML
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: https://gitlab.com/PyCQA/flake8
|
|
rev: master
|
|
hooks:
|
|
- id: flake8
|
|
exclude: '^(pyextra)|(external)/'
|
|
args:
|
|
- --select=F
|
|
- repo: local
|
|
hooks:
|
|
- id: pylint
|
|
name: pylint
|
|
entry: pylint
|
|
language: system
|
|
types: [python]
|
|
exclude: '^(pyextra)|(external)/'
|
|
args:
|
|
- --disable=R,C,W
|