We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cccded0 commit 60ce007Copy full SHA for 60ce007
2 files changed
.pre-commit-config.yaml
@@ -42,7 +42,7 @@ repos:
42
- id: mdformat
43
additional_dependencies:
44
- mdformat-gfm
45
- - mdformat-black
+ - mdformat-ruff
46
- mdformat_frontmatter
47
args: ["--number"]
48
@@ -61,7 +61,7 @@ repos:
61
- id: ruff-format
62
name: Black by Ruff
63
# basic check
64
- - id: ruff
+ - id: ruff-check
65
name: Ruff check
66
args: ["--fix"] #, "--unsafe-fixes"
67
pyproject.toml
@@ -72,14 +72,11 @@ namespaces = false # to disable scanning PEP 420 namespaces (true by default)
72
73
# === Linting & Formatting ===
74
75
-[tool.black]
76
-line-length = 79
77
-
78
# --- ruff ---
79
80
[tool.ruff]
81
target-version = "py39"
82
+line-length = 120
83
# Exclude a variety of commonly ignored directories.
84
exclude = [
85
".eggs",
0 commit comments