Skip to content

Commit 7a93398

Browse files
committed
Change back pyproject and move config in settings
1 parent 8734672 commit 7a93398

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.vscode/settings.json

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,4 @@
1212
}
1313
},
1414
"ruff.importStrategy": "fromEnvironment",
15-
"ruff.lint.args": [
16-
"--config",
17-
".github/linters/.ruff.toml"
18-
],
19-
"ruff.format.args": [
20-
"--config",
21-
".github/linters/.ruff.toml"
22-
]
2315
}

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,13 @@ def format(session) -> None:
145145
'check',
146146
'--fix-only',
147147
'--config',
148-
'.github/linters/.ruff.toml',
148+
'.ruff.toml',
149149
*lint_paths_py,
150150
)
151151
session.run(
152152
'ruff',
153153
'format',
154154
'--config',
155-
'.github/linters/.ruff.toml',
155+
'.ruff.toml',
156156
*lint_paths_py,
157157
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ exclude = [
6868
vcs = "git"
6969
style = "pep440"
7070

71-
[project.optional-dependencies]
71+
[dependency-groups]
7272
dev = [
7373
"datamodel-code-generator>=0.30.0",
7474
"mypy>=1.15.0",

0 commit comments

Comments
 (0)