-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "schema-library"
version = "0.1.0"
description = ""
authors = [{name = "OpsMill", email = "info@opsmill.com"}]
requires-python = ">=3.10,<3.13"
dependencies = [
"infrahub-sdk[all]>=1.17.0",
"invoke>=2.2.1",
"toml>=0.10.2",
]
[dependency-groups]
dev = [
"ruff>=0.14.10",
"yamllint>=1.37.1",
"mypy>=1.19.1",
"pylint>=4.0.4",
"vale>=3.13.0.0",
"types-pyyaml>=6.0.12.20250915",
]
[tool.pylint.messages_control]
# Line length is enforced by Black, so pylint doesn't need to check it.
# Pylint and Black disagree about how to format multi-line arrays; Black wins.
# Rules already covered by RUFF
# - too-many-statements
# - unused-argument
disable = """,
line-too-long,
missing-module-docstring,
missing-function-docstring,
missing-class-docstring,
consider-using-from-import,
invalid-name,
too-many-arguments,
too-many-locals,
keyword-arg-before-vararg,
too-few-public-methods,
too-many-instance-attributes,
too-many-statements,
fixme,
consider-using-f-string,
protected-access,
import-self,
wrong-import-order,
multiple-statements,
unused-argument,
"""
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"