We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5343f5 commit 0dc86a4Copy full SHA for 0dc86a4
.pylintrc
@@ -9,7 +9,6 @@ persistent=yes
9
disable=
10
missing-docstring, # not everything needs a docstring
11
fixme, # work in progress
12
- bad-continuation, # clashes with black
13
too-few-public-methods, # triggers when inheriting
14
ungrouped-imports, # clashes with isort
15
duplicate-code, # broken, setup.py
src/cloudformation_cli_python_lib/identifier_utils.py
@@ -20,6 +20,7 @@ def generate_resource_identifier(
20
max_length: int,
21
) -> str:
22
if max_length < MIN_PHYSICAL_RESOURCE_ID_LENGTH:
23
+ # pylint: disable=broad-exception-raised
24
raise Exception(
25
f"Cannot generate resource IDs shorter than\
26
{MIN_PHYSICAL_RESOURCE_ID_LENGTH} characters."
0 commit comments