-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
93 lines (93 loc) · 2.83 KB
/
.pre-commit-config.yaml
File metadata and controls
93 lines (93 loc) · 2.83 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
repos:
- repo: https://github.com/psf/black
rev: 25.1.0
hooks:
- id: black
args: ["src/"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-merge-conflict
- id: end-of-file-fixer
- id: check-docstring-first
- id: trailing-whitespace
- id: mixed-line-ending
- id: check-yaml
- id: fix-encoding-pragma
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.15.0
hooks:
- id: reorder-python-imports
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: python-no-eval
- id: python-use-type-annotations
- id: python-check-blanket-noqa
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
hooks:
- id: autoflake
args:
- --in-place
- --recursive
- --expand-star-imports
- --remove-all-unused-imports
- --remove-duplicate-keys
- --remove-unused-variables
- repo: https://github.com/PyCQA/flake8
rev: 7.3.0
hooks:
- id: flake8
name: flake8
additional_dependencies:
- flake8-print
- flake8-implicit-str-concat
- flake8-annotations
- flake8-return
- flake8-print
- flake8-simplify
- flake8-tidy-imports
- flake8-bugbear
- flake8-comprehensions
- flake8-builtins
- flake8-docstrings
- pep8-naming
- repo: https://github.com/PyCQA/autoflake
rev: v2.3.1
hooks:
- id: autoflake
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.99.5
hooks:
- id: terraform_fmt
args: [--args=-recursive]
- id: terraform_validate
- id: terraform_docs
args:
- "--args=--lockfile=false"
- id: terraform_tflint
args:
- "--args=--recursive"
- "--args=--only=terraform_deprecated_interpolation"
- "--args=--only=terraform_deprecated_index"
- "--args=--only=terraform_unused_declarations"
- "--args=--only=terraform_comment_syntax"
- "--args=--only=terraform_documented_outputs"
- "--args=--only=terraform_documented_variables"
- "--args=--only=terraform_typed_variables"
- "--args=--only=terraform_module_pinned_source"
- "--args=--only=terraform_naming_convention"
- "--args=--only=terraform_required_version"
- "--args=--only=terraform_required_providers"
- "--args=--only=terraform_standard_module_structure"
- "--args=--only=terraform_workspace_remote"
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
- repo: https://github.com/gitleaks/gitleaks
rev: v8.27.2
hooks:
- id: gitleaks