File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ DISABLE_ERRORS_LINTERS:
21
21
- REPOSITORY_SEMGREP
22
22
DOCKERFILE_HADOLINT_ARGUMENTS : " --ignore DL3008 --ignore DL3018 --ignore DL3013 --ignore DL3059 --ignore DL3005"
23
23
COPYPASTE_JSCPD_ARGUMENTS : " --ignore '**/handlers/**,**/vector*'"
24
+ COPYPASTE_JSCPD_DISABLE_ERRORS_IF_LESS_THAN : 28
24
25
MARKDOWN_MARKDOWN_LINK_CHECK_CONFIG_FILE : " .markdown-link-check-config.json"
25
26
MARKDOWN_MARKDOWN_LINK_CHECK_DISABLE_ERRORS : true
26
27
REPOSITORY_CHECKOV_DISABLE_ERRORS : true
Original file line number Diff line number Diff line change @@ -92,13 +92,13 @@ dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
92
92
# Python 3.10.
93
93
target-version = " py310"
94
94
95
+ [tool .ruff ]
96
+ # Ignore a variety of commonly ignored directories.
97
+ ignore = [" databases/**" ]
98
+
95
99
[tool .ruff .mccabe ]
96
100
max-complexity = 10
97
101
98
- [tool .ruff .ignore ]
99
- # Ignore a variety of commonly ignored directories.
100
- exclude = [" databases/**" ]
101
-
102
102
[tool .ruff .per-file-ignores ]
103
103
"**/database/*" = [
104
104
" A003" , # We should allow shadowing
You can’t perform that action at this time.
0 commit comments