-
-
Notifications
You must be signed in to change notification settings - Fork 581
Expand file tree
/
Copy pathsetup.cfg
More file actions
21 lines (17 loc) · 600 Bytes
/
setup.cfg
File metadata and controls
21 lines (17 loc) · 600 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Configuration of wemake-python-styleguide
# Docs: https://wemake-python-styleguide.readthedocs.io
#
[flake8]
# Ruff set to 79, but we have some noqa comments which are a bit longer, and wemake does not forgive that
max-line-length = 88
# Suppress WPS410 warning
allowed-module-metadata=__all__
ignore =
# Allow relative imports to the current folder.
WPS300,
per-file-ignores =
# Tests contain similar string literals
tests/pytest/_cli_test.py: WPS226
# We will not spend time on fixing coplexity in depprecated hook
src/pre_commit_terraform/terraform_docs_replace.py: WPS232