From 6ba20c61a04c688120161f6c5fbb56102f8082ef Mon Sep 17 00:00:00 2001 From: Viljami Ilola <+@hix.fi> Date: Sun, 7 Apr 2024 23:25:09 +0300 Subject: exploding sprites and groups as their own. more refactoring. --- pyproject.toml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml index ea19274..7d8cf50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sliceitoff" -version = "0.2" +version = "0.3-alpha" description = "Arcade game where one slices play area off avoiding enemies." authors = ["Viljami Ilola <+@hix.fi>"] readme = "README.md" @@ -23,15 +23,24 @@ build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] sliceitoff = 'sliceitoff.main:main' + + [tool.pytest.ini_options] pythonpath = [ "src/sliceitoff" ] + + [tool.pylint.main] recursive = true source-roots = ["src/sliceitoff"] extension-pkg-whitelist = ["pygame"] [tool.pylint."messages control"] -disable = [ - "too-few-public-methods" # pygame sprites and groups -] +disable = [ "too-few-public-methods" ] # pygame sprites and groups + +# From given .pylintrc +[tool.pylint.design] +max-args = 7 +max-attributes = 8 +max-statements = 20 +min-public-methods = 0 -- cgit v1.2.3