2 changed files with 32 additions and 0 deletions
@ -0,0 +1,31 @@ |
|||||
|
[build-system] |
||||
|
requires = ["setuptools", "wheel"] |
||||
|
build-backend = "setuptools.build_meta" |
||||
|
|
||||
|
[tool.black] |
||||
|
line-length = 125 |
||||
|
skip-string-normalization = true |
||||
|
|
||||
|
[tool.isort] |
||||
|
profile = "black" |
||||
|
combine_as_imports = true |
||||
|
combine_star = true |
||||
|
line_length = 125 |
||||
|
|
||||
|
[tool.pyright] |
||||
|
include = [ |
||||
|
"discord", |
||||
|
"discord/types", |
||||
|
"discord/ui", |
||||
|
"discord/ext", |
||||
|
"discord/ext/commands", |
||||
|
"discord/ext/tasks", |
||||
|
] |
||||
|
exclude = [ |
||||
|
"**/__pycache__", |
||||
|
"build", |
||||
|
"dist", |
||||
|
"docs", |
||||
|
] |
||||
|
pythonVersion = "3.8" |
||||
|
typeCheckingMode = "basic" |
Loading…
Reference in new issue