Skip to content

Commit 1d991de

Browse files
authoredDec 9, 2024··
feat(linters): (#213)
### Changed - Update linbters
1 parent 673fccd commit 1d991de

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
 

‎.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 24.8.0
3+
rev: 24.10.0
44
hooks:
55
- id: black
66
args: [--line-length=100]
@@ -10,6 +10,6 @@ repos:
1010
- id: isort
1111
name: isort
1212
- repo: https://github.com/astral-sh/ruff-pre-commit
13-
rev: v0.5.6
13+
rev: v0.8.0
1414
hooks:
1515
- id: ruff

‎pyproject.toml

+5
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ line-length = 100
4444

4545
[tool.isort]
4646
profile = "black"
47+
include_trailing_comma = "true"
48+
line_length=100
49+
multi_line_output=3
50+
ensure_newline_before_comments = "true"
51+
4752

4853
[tool.ruff]
4954
line-length = 100

0 commit comments

Comments
 (0)
Please sign in to comment.