github.com/aws-cloudformation/cloudformation-cli-go-plugin@v1.2.0/setup.cfg (about)

     1  [metadata]
     2  license_file = LICENSE
     3  description-file = README.md
     4  
     5  [flake8]
     6  exclude =
     7      .git,
     8      __pycache__,
     9      build,
    10      dist,
    11      *.pyc,
    12      *.egg-info,
    13      .cache,
    14      .eggs,
    15      .tox
    16  max-complexity = 10
    17  max-line-length = 88
    18  select = C,E,F,W,B,B950
    19  # C812, C815, W503 clash with black, F723 false positive
    20  ignore = E501,C812,C815,C816,W503,F723
    21  
    22  [isort]
    23  line_length = 88
    24  indent = '    '
    25  multi_line_output = 3
    26  default_section = FIRSTPARTY
    27  skip = env
    28  include_trailing_comma = true
    29  combine_as_imports = True
    30  force_grid_wrap = 0
    31  known_standard_library = dataclasses
    32  known_first_party = rpdk
    33  known_third_party = boto3,jinja2,cloudformation_cli_python_lib,pytest
    34  
    35  [tool:pytest]
    36  # can't do anything about 3rd party modules, so don't spam us
    37  filterwarnings =
    38      ignore::DeprecationWarning:botocore