-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.29 KB
/
pyproject.toml
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
[tool.poetry]
name = "schema-library"
version = "0.1.0"
description = ""
authors = ["OpsMill <info@opsmill.com>"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.10, < 3.13"
infrahub-sdk = { version = "^1", extras = ["all"]}
invoke = "^2.1.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.1"
yamllint = "^1.35.1"
mypy = "^1.14.1"
[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"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"