Modules are never 'too complex'

This commit is contained in:
Alexander Hess 2021-09-15 11:47:38 +02:00
parent d03c2f91fb
commit 5978b0e92f
Signed by: alexander
GPG key ID: 344EA5AB10D868E0

View file

@ -95,6 +95,8 @@ extend-ignore =
RST201,RST203,RST210,RST213,RST301, RST201,RST203,RST210,RST213,RST301,
# String constant over-use is checked visually by the programmer. # String constant over-use is checked visually by the programmer.
WPS226, WPS226,
# Modules as a whole are assumed to be not "too complex".
WPS232,
# Allow underscores in numbers. # Allow underscores in numbers.
WPS303, WPS303,
# f-strings are ok. # f-strings are ok.
@ -141,24 +143,9 @@ per-file-ignores =
src/urban_meal_delivery/configuration.py: src/urban_meal_delivery/configuration.py:
# Allow upper case class variables within classes. # Allow upper case class variables within classes.
WPS115, WPS115,
src/urban_meal_delivery/console/forecasts.py:
# The module is not too complex.
WPS232,
src/urban_meal_delivery/db/addresses_addresses.py: src/urban_meal_delivery/db/addresses_addresses.py:
# The module does not have too many imports. # The module does not have too many imports.
WPS201, WPS201,
src/urban_meal_delivery/db/customers.py:
# The module is not too complex.
WPS232,
src/urban_meal_delivery/db/restaurants.py:
# The module is not too complex.
WPS232,
src/urban_meal_delivery/forecasts/methods/decomposition.py:
# The module is not too complex.
WPS232,
src/urban_meal_delivery/forecasts/methods/extrapolate_season.py:
# The module is not too complex.
WPS232,
src/urban_meal_delivery/forecasts/models/tactical/horizontal.py: src/urban_meal_delivery/forecasts/models/tactical/horizontal.py:
# The many noqa's are ok. # The many noqa's are ok.
WPS403, WPS403,