Various data updates

This commit is contained in:
2024-07-12 23:35:14 +09:00
parent 4ad609c759
commit e783b3f6b1
18 changed files with 201 additions and 1441 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[tool.pyright]
typeCheckingMode = "strict"
reportMissingImports = "information"
reportMissingTypeStubs = "information"
reportUnknownMemberType = "information"
[tool.ruff]
line-length = 120
[tool.black]
# set 10 short for better formatting
line-length = 110
# to avoid " ... " " ... " string sets
# --preview --enable-unstable-feature string_processing
# experimental-string-processing = true
preview = true
enable-unstable-feature = ["string_processing"]
[tool.pylint.format]
max-line-length = 120
#[tool.pylint.TYPECHECK]
#generated-members="utils.*"
[tool.pylint.miscellaneous]
notes = ["FIXME", "TODO"]
notes-rgx = '(FIXME|TODO)(\((TTD-|#)\[0-9]+\))'
[tool.flake8]
max-line-length = 120