mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-07-13 09:32:26 +03:00
Tweak multi-line comment
This commit is contained in:
parent
7542965e5d
commit
f1b173a59d
|
@ -124,10 +124,9 @@ lint.ignore = [
|
||||||
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
|
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
|
||||||
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
|
"S101", # Use of assert detected https://docs.astral.sh/ruff/rules/assert/
|
||||||
"SIM102", # sometimes it's better to nest
|
"SIM102", # sometimes it's better to nest
|
||||||
"UP038", # Checks for uses of isinstance/issubclass that take a tuple
|
# Checks for uses of isinstance/issubclass that take a tuple of types for comparison.
|
||||||
# of types for comparison.
|
# Deactivated because it can make the code slow: https://github.com/astral-sh/ruff/issues/7871
|
||||||
# Deactivated because it can make the code slow:
|
"UP038",
|
||||||
# https://github.com/astral-sh/ruff/issues/7871
|
|
||||||
]
|
]
|
||||||
# The fixes in extend-unsafe-fixes will require
|
# The fixes in extend-unsafe-fixes will require
|
||||||
# provide the `--unsafe-fixes` flag when fixing.
|
# provide the `--unsafe-fixes` flag when fixing.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user