mirror of
https://github.com/kristoferssolo/Tetris.git
synced 2025-10-21 20:00:35 +00:00
chore(gh-actions): add linting
fix: typo style: rename job
This commit is contained in:
parent
12776ee181
commit
c3443b5385
25
.github/workflows/lint.yml
vendored
Normal file
25
.github/workflows/lint.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: Lint
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest]
|
||||
python-version: ["3.10", "3.11"]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements_dev.txt
|
||||
- name: Analysing the code with mypy
|
||||
run: |
|
||||
mypy $(git ls-files '*.py')
|
||||
- name: Analysing the code with ruff
|
||||
run: |
|
||||
ruff check $(git ls-files '*.py')
|
||||
@ -11,19 +11,19 @@ readme = "README.md"
|
||||
requires-python = ">=3.11"
|
||||
license = { file = "LICENSE" }
|
||||
dependencies = [
|
||||
"attrs==23.1.0",
|
||||
"loguru==0.7.2",
|
||||
"numpy==1.26.3",
|
||||
"pygame-ce==2.4.0",
|
||||
"toml==0.10.2",
|
||||
"attrs==23.1.0",
|
||||
"loguru==0.7.2",
|
||||
"numpy==1.26.3",
|
||||
"pygame-ce==2.4.0",
|
||||
"toml==0.10.2",
|
||||
]
|
||||
keywords = ["tetris", "game", "pygame"]
|
||||
classifiers = [
|
||||
"Development Status :: 3 - Alpha",
|
||||
"License :: OSI Approved :: GPLv3 License",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Development Status :: 3 - Alpha",
|
||||
"License :: OSI Approved :: GPLv3 License",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
@ -45,40 +45,41 @@ warn_unused_configs = true
|
||||
|
||||
[tool.ruff]
|
||||
extend-select = [
|
||||
"B",
|
||||
"BLE",
|
||||
"C4",
|
||||
"ERA",
|
||||
"I",
|
||||
"ICN",
|
||||
"INP",
|
||||
"ISC",
|
||||
"N",
|
||||
"NPY",
|
||||
"PGH",
|
||||
"PIE",
|
||||
# "PTH",
|
||||
"Q",
|
||||
"RET",
|
||||
"RSE",
|
||||
"RUF",
|
||||
"S",
|
||||
"SIM",
|
||||
"T20",
|
||||
"TCH",
|
||||
"TID",
|
||||
"YTT",
|
||||
"B",
|
||||
"BLE",
|
||||
"C4",
|
||||
"ERA",
|
||||
"I",
|
||||
"ICN",
|
||||
"INP",
|
||||
"ISC",
|
||||
"N",
|
||||
"NPY",
|
||||
"PGH",
|
||||
"PIE",
|
||||
# "PTH",
|
||||
"Q",
|
||||
"RET",
|
||||
"RSE",
|
||||
"RUF",
|
||||
"S",
|
||||
"SIM",
|
||||
"T20",
|
||||
"TCH",
|
||||
"TID",
|
||||
"YTT",
|
||||
]
|
||||
ignore = ["E741"]
|
||||
show-fixes = true
|
||||
line-length = 120
|
||||
indent-width = 4
|
||||
target-version = "py38"
|
||||
target-version = "py310"
|
||||
|
||||
|
||||
[tool.ruff.lint]
|
||||
extend-select = ["I"]
|
||||
preview = true
|
||||
fixable = ["ALL"]
|
||||
|
||||
[tool.ruff.format]
|
||||
quote-style = "double"
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
mypy==1.8.0
|
||||
pytest==7.4.3
|
||||
ruff==0.1.9
|
||||
types-toml==0.10.8.7
|
||||
|
||||
@ -355,10 +355,10 @@ class Tetris(BaseScreen):
|
||||
def _initialize_timers(self) -> None:
|
||||
"""Initialize game timers."""
|
||||
self.timers = Timers(
|
||||
Timer(self.initial_block_speed, True, self.move_down),
|
||||
Timer(CONFIG.game.movment_delay),
|
||||
Timer(CONFIG.game.rotation_delay),
|
||||
Timer(CONFIG.game.drop_delay),
|
||||
Timer(self.initial_block_speed, True, self.move_down), # type: ignore
|
||||
Timer(CONFIG.game.movment_delay), # type: ignore
|
||||
Timer(CONFIG.game.rotation_delay), # type: ignore
|
||||
Timer(CONFIG.game.drop_delay), # type: ignore
|
||||
)
|
||||
self.timers.vertical.activate()
|
||||
|
||||
|
||||
@ -57,10 +57,10 @@ def run() -> None:
|
||||
game.Main(GameMode.PLAYER).run()
|
||||
|
||||
|
||||
def main(args: argparse.ArgumentParser) -> None:
|
||||
if args.debug:
|
||||
def main(args) -> None:
|
||||
if args.debug: # type: ignore
|
||||
level = "debug"
|
||||
elif args.verbose:
|
||||
elif args.verbose: # type: ignore
|
||||
level = "info"
|
||||
else:
|
||||
level = "warning"
|
||||
@ -72,4 +72,4 @@ def main(args: argparse.ArgumentParser) -> None:
|
||||
|
||||
if __name__ == "__main__":
|
||||
args = parser.parse_args()
|
||||
main(args)
|
||||
main(args) # type: ignore
|
||||
|
||||
Loading…
Reference in New Issue
Block a user