diff --git a/linting-config-examples/ruff.toml b/linting-config-examples/ruff.toml index 296b38b..b467b6a 100644 --- a/linting-config-examples/ruff.toml +++ b/linting-config-examples/ruff.toml @@ -80,10 +80,12 @@ lint.select = [ # Overwrite the following sections as needed # in the repositories using the lint workflow. -# ignore = [ +lint.ignore = [ + "D203", # one-blank-line-before-class + "D213", # multi-line-summary-second-line # "E402", # module-import-not-at-top-of-file # "E501", # line-too-long -# ] +] # [lint.per-file-ignores] # Define file-specific linting rule ignores