forked from taraslayshchuk/es2csv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
56 lines (51 loc) · 1.44 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
exclude: "^venv"
default_stages: [ pre-commit ]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-builtin-literals
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- id: end-of-file-fixer
- id: mixed-line-ending
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.1.11'
hooks:
- id: ruff
args:
- "--config=pyproject.toml"
- "--unsafe-fixes"
- repo: https://github.com/psf/black
rev: 23.12.1
hooks:
- id: black
args:
- "--config=pyproject.toml"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
hooks:
- id: mypy
args:
- '--strict'
- "--config=pyproject.toml"
- "--no-namespace-packages"
- "--enable-incomplete-feature=Unpack"
additional_dependencies: [ click,elasticsearch, pytest,tenacity ]
ci:
autofix_commit_msg: |
🚨 Lint Fixes
autofix_prs: true
autoupdate_commit_msg: |
✨Update versions of tools in pre-commit configs to latest version