forked from tofuSCHNITZEL/pyopnsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
35 lines (32 loc) · 928 Bytes
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.8.0
hooks:
# Run the linter.
- id: ruff
args: ["--fix"]
- id: ruff-format
# Using this mirror lets us use mypyc-compiled black, which is about 2x faster
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.8.0
hooks:
- id: black
language_version: python3.10
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.13.0'
hooks:
- id: mypy
args: ["--install-types", "--non-interactive"]
additional_dependencies: # requirements.txt + type stubs if available
- pbr>=1.6
- requests>=2.14.2
- validators>=0.34
- urllib3>=2.2.3
- repo: local
hooks:
- id: run-tests
name: Run Tests
entry: venv/bin/pytest
language: system
pass_filenames: false