-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Static typechecking and error annotations
- enable static type checking via pyright-action - added pyproject.toml with basic meta data and pyright configuration - use action-shellcheck instead of installing it manually - use ruff-action instead of installing it manually - Cache pip dependencies
- Loading branch information
Showing
2 changed files
with
42 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[project] | ||
name = "umu-protonfixes" | ||
description = "Stop gap solution to fix issues in games that run under Wine." | ||
keywords = ["proton", "protontricks", "wine", "winetricks", "linux", "gaming"] | ||
license = {file = "LICENSE"} | ||
requires-python = "3.9" | ||
|
||
|
||
[project.urls] | ||
Repository = "https://github.com/Open-Wine-Components/umu-protonfixes.git" | ||
Issues = "https://github.com/Open-Wine-Components/umu-protonfixes/issues" | ||
|
||
|
||
[tool.pyright] | ||
exclude = [ | ||
"**/__pycache__", | ||
"subprojects", | ||
"verbs" | ||
] | ||
pythonVersion = "3.9" | ||
pythonPlatform = "Linux" |