Christina Theodoris commited on
Commit ·
5d0082c
1
Parent(s): 8df5dc1
Add pre-commit config
Browse files- .pre-commit-config.yaml +26 -0
.pre-commit-config.yaml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# See https://pre-commit.com for more information
|
| 2 |
+
# See https://pre-commit.com/hooks.html for more hooks
|
| 3 |
+
repos:
|
| 4 |
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
| 5 |
+
rev: v3.2.0
|
| 6 |
+
hooks:
|
| 7 |
+
- id: trailing-whitespace
|
| 8 |
+
- id: end-of-file-fixer
|
| 9 |
+
- id: check-yaml
|
| 10 |
+
- id: check-added-large-files
|
| 11 |
+
- id: check-merge-conflict
|
| 12 |
+
- id: mixed-line-ending
|
| 13 |
+
- id: check-docstring-first
|
| 14 |
+
- repo: https://github.com/pycqa/isort
|
| 15 |
+
rev: 5.12.0
|
| 16 |
+
hooks:
|
| 17 |
+
- id: isort
|
| 18 |
+
args: ["--profile", "black"]
|
| 19 |
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
| 20 |
+
# Ruff version.
|
| 21 |
+
rev: v0.1.4
|
| 22 |
+
hooks:
|
| 23 |
+
# Run the Ruff linter.
|
| 24 |
+
- id: ruff
|
| 25 |
+
# Run the Ruff formatter.
|
| 26 |
+
- id: ruff-format
|