mirror of
https://github.com/containers/podman-compose.git
synced 2024-11-29 19:33:48 +01:00
30 lines
841 B
YAML
30 lines
841 B
YAML
|
repos:
|
||
|
- repo: https://github.com/psf/black
|
||
|
rev: 23.3.0
|
||
|
hooks:
|
||
|
- id: black
|
||
|
# It is recommended to specify the latest version of Python
|
||
|
# supported by your project here, or alternatively use
|
||
|
# pre-commit's default_language_version, see
|
||
|
# https://pre-commit.com/#top_level-default_language_version
|
||
|
language_version: python3.10
|
||
|
types: [python]
|
||
|
- repo: https://github.com/pycqa/flake8
|
||
|
rev: 6.0.0
|
||
|
hooks:
|
||
|
- id: flake8
|
||
|
types: [python]
|
||
|
- repo: local
|
||
|
hooks:
|
||
|
- id: pylint
|
||
|
name: pylint
|
||
|
entry: pylint
|
||
|
language: system
|
||
|
types: [python]
|
||
|
args:
|
||
|
[
|
||
|
"-rn", # Only display messages
|
||
|
"-sn", # Don't display the score
|
||
|
"--rcfile=.pylintrc", # Link to your config file
|
||
|
]
|