-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
146 lines (126 loc) · 3.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
[build-system]
requires = ["hatchling", "hatch-regex-commit"]
build-backend = "hatchling.build"
[project]
dynamic = ["version"]
name = "discord-github-utils"
description = "Discord bot providing useful GitHub-related commands."
authors = [
{ name="object-Object" }
]
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.12"
# Rye workspace
[tool.rye]
managed = true
virtual = true
universal = true
dev-dependencies = [
"ruff~=0.4.10",
"pre-commit",
]
[tool.rye.workspace]
members = [
"bot",
"common",
"infrastructure",
]
[tool.rye.scripts]
bot = { call="ghutils.app" }
aws-cdk = { call="ghutils.aws_cdk.app" }
setup = { chain=["setup:sync", "setup:pre-commit"] }
"setup:sync" = "rye sync"
"setup:pre-commit" = "pre-commit install"
# Hatch version plugin (so `hatch version` works)
[tool.hatch.version]
source = "regex_commit"
path = "common/src/ghutils/common/__version__.py"
commit_message = "Bump version to `{new_version}`"
tag_message = "Bump version to `{new_version}`"
# linting/formatting
[tool.ruff]
preview = true
extend-exclude = [
"**/venv",
"**/.*",
"**/node_modules",
"**/__pycache__",
]
[tool.ruff.lint]
preview = true
extend-select = [
"I", # import sorting
"RUF022", # __all__ sorting
]
extend-ignore = [
# covered by Pyright
"F821", # undefined variable
"F401", # imported but unused
"F841", # unused variable
]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = [
"ghutils",
]
# type checking
[tool.pyright]
pythonVersion = "3.12"
pythonPlatform = "All"
include = [
"bot/src",
"common/src",
"infrastructure/src",
]
exclude = [
"**/venv",
"**/.*",
"**/node_modules",
"**/__pycache__",
]
typeCheckingMode = "basic"
enableExperimentalFeatures = true
strictDictionaryInference = true
strictListInference = true
strictSetInference = true
reportAssertAlwaysTrue = "error"
reportConstantRedefinition = "error"
reportDeprecated = "error"
reportFunctionMemberAccess = "error"
reportIncompatibleMethodOverride = "error"
reportIncompatibleVariableOverride = "error"
reportIncompleteStub = "error"
reportInconsistentConstructor = "error"
reportInvalidStringEscapeSequence = "error"
reportInvalidStubStatement = "error"
reportInvalidTypeVarUse = "error"
reportMatchNotExhaustive = "error"
reportMissingParameterType = "error"
reportOverlappingOverload = "error"
reportSelfClsParameterName = "error"
reportTypeCommentUsage = "error"
reportUnknownParameterType = "error"
reportUnnecessaryCast = "error"
reportUnnecessaryContains = "error"
reportUnsupportedDunderAll = "error"
reportUntypedBaseClass = "error"
reportUntypedClassDecorator = "error"
reportUntypedFunctionDecorator = "error"
reportUntypedNamedTuple = "error"
reportWildcardImportFromLibrary = "error"
reportMissingTypeArgument = "warning"
reportPrivateUsage = "warning"
reportUnknownArgumentType = "warning"
reportUnknownLambdaType = "warning"
reportUnknownMemberType = "warning"
reportUnknownVariableType = "warning"
reportUnnecessaryComparison = "warning"
reportUnnecessaryIsInstance = "warning"
reportUnusedClass = "warning"
reportUnusedExpression = "warning"
reportUnusedFunction = "warning"
reportUnusedImport = "warning"
reportUnusedVariable = "warning"
reportMissingTypeStubs = "none"
reportDuplicateImport = "none"