We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34c1850 commit ba8e4bfCopy full SHA for ba8e4bf
.pre-commit-config.yaml
@@ -28,7 +28,7 @@ repos:
28
files: ^Tools/build/check_warnings.py
29
- id: ruff-format
30
name: Run Ruff (format) on Tools/jit/
31
- args: [--check]
+ args: [--check, --config=Tools/jit/.ruff.toml]
32
files: ^Tools/jit/
33
34
- repo: https://github.com/pre-commit/pre-commit-hooks
Tools/jit/.ruff.toml
@@ -0,0 +1,7 @@
1
+extend = "../../.ruff.toml" # Inherit the project-wide settings
2
+
3
+line-length = 88
4
5
+[format]
6
+preview = true
7
+docstring-code-format = true
0 commit comments