89 lines
2.5 KiB
YAML
89 lines
2.5 KiB
YAML
---
|
|
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
files: ^(anta|docs|scripts|tests|asynceapi)/
|
|
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
exclude: docs/.*.svg
|
|
- id: end-of-file-fixer
|
|
- id: check-added-large-files
|
|
exclude: tests/data/.*$
|
|
- id: check-merge-conflict
|
|
|
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
|
rev: v1.5.4
|
|
hooks:
|
|
- name: Check and insert license on Python files
|
|
id: insert-license
|
|
# exclude:
|
|
files: .*\.py$
|
|
args:
|
|
- --license-filepath
|
|
- .github/license-short.txt
|
|
- --use-current-year
|
|
- --allow-past-years
|
|
- --fuzzy-match-generates-todo
|
|
- --no-extra-eol
|
|
|
|
- name: Check and insert license on Markdown files
|
|
id: insert-license
|
|
files: .*\.md$
|
|
# exclude:
|
|
args:
|
|
- --license-filepath
|
|
- .github/license-short.txt
|
|
- --use-current-year
|
|
- --allow-past-years
|
|
- --fuzzy-match-generates-todo
|
|
- --comment-style
|
|
- '<!--| ~| -->'
|
|
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.4.2
|
|
hooks:
|
|
- id: ruff
|
|
name: Run Ruff linter
|
|
args: [ --fix ]
|
|
- id: ruff-format
|
|
name: Run Ruff formatter
|
|
|
|
- repo: local # as per https://pylint.pycqa.org/en/latest/user_guide/installation/pre-commit-integration.html
|
|
hooks:
|
|
- id: pylint
|
|
entry: pylint
|
|
language: python
|
|
name: Check code style with pylint
|
|
description: This hook runs pylint.
|
|
types: [python]
|
|
args:
|
|
- -rn # Only display messages
|
|
- -sn # Don't display the score
|
|
- --rcfile=pyproject.toml # Link to config file
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.2.6
|
|
hooks:
|
|
- id: codespell
|
|
name: Checks for common misspellings in text files.
|
|
entry: codespell
|
|
language: python
|
|
types: [text]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.10.0
|
|
hooks:
|
|
- id: mypy
|
|
name: Check typing with mypy
|
|
args:
|
|
- --config-file=pyproject.toml
|
|
additional_dependencies:
|
|
- anta[cli]
|
|
- types-PyYAML
|
|
- types-requests
|
|
- types-pyOpenSSL
|
|
- pytest
|
|
files: ^(anta|tests)/
|