mirror of
https://github.com/TagStudioDev/TagStudio.git
synced 2026-01-30 14:50:47 +00:00
* fix: Do not create command prompt window on subcmd Patches files from abandoned libraries are located and updated in src/qt/helpers/vendored with modified sections labeld PATCHED. A wrapper around subprocess.Popen automatically sets the creation flag to no window on windows. * fix: Replace Popen in mediainfo_json decoder * fixup: Pipe stdin to stdin * chore: Exclude vendored dir from tooling checks * suppress mypy warnings
10 lines
325 B
TOML
10 lines
325 B
TOML
[tool.ruff]
|
|
exclude = ["main_window.py", "home_ui.py", "resources.py", "resources_rc.py", "**/vendored/"]
|
|
|
|
[tool.mypy]
|
|
strict_optional = false
|
|
disable_error_code = ["union-attr", "annotation-unchecked", "import-untyped"]
|
|
explicit_package_bases = true
|
|
warn_unused_ignores = true
|
|
exclude = ['tests', 'src/qt/helpers/vendored']
|