Skip to content

Commit 2545bb5

Browse files
authored
Merge pull request #39 from C0rn3j/touchups
2 parents 1f9a8dc + 2a019da commit 2545bb5

File tree

3 files changed

+576
-548
lines changed

3 files changed

+576
-548
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
build/
2+
PySDL3.egg-info/
13
shaders/
24
sdl3/bin/
35
docs/temp/

pyproject.toml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,18 @@ include-package-data = true
3737
"sdl3" = ["*.py"]
3838

3939
[tool.setuptools.dynamic]
40-
version = {attr = "sdl3.__version__"}
40+
version = {attr = "sdl3.__version__"}
41+
42+
[tool.pyright]
43+
pythonVersion = "3.10"
44+
45+
[tool.ruff]
46+
target-version = "py310"
47+
48+
[tool.ruff.lint.flake8-quotes]
49+
inline-quotes = "double"
50+
docstring-quotes = "double"
51+
52+
[tool.ruff.format]
53+
quote-style = "double"
54+
indent-style = "tab"

0 commit comments

Comments
 (0)