Skip to content
Prev Previous commit
Disable D205 flake8 warning globally
  • Loading branch information
antonwolfy committed Feb 20, 2024
commit 34819db065796a24670e47b3862e9f7cde38850e
6 changes: 2 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ extend-ignore =
D107,
# no blank lines allowed after function docstring:
D202,
# 1 blank line required between summary line and description:
D205,
# first line should end with a period:
D400,
# first line should be in imperative mood:
Expand All @@ -42,10 +44,6 @@ per-file-ignores =
dpnp/fft/__init__.py: F401
dpnp/linalg/__init__.py: F401
dpnp/random/__init__.py: F401
dpnp/dpnp_iface.py: D205
dpnp/dpnp_iface_manipulation.py: D205
dpnp/dpnp_iface_nanfunctions.py: D205
dpnp//dpnp_iface_statistics.py: D205

filename = *.py, *.pyx, *.pxi, *.pxd
max_line_length = 80
Expand Down