diff --git a/.automation/generated/linter-helps.json b/.automation/generated/linter-helps.json index 7cb9b768e7f..0768081ac28 100644 --- a/.automation/generated/linter-helps.json +++ b/.automation/generated/linter-helps.json @@ -771,7 +771,7 @@ " [--secrets-scan-file-type SECRETS_SCAN_FILE_TYPE]", " [--enable-secret-scan-all-files]", " [--block-list-secret-scan BLOCK_LIST_SECRET_SCAN]", - " [--summary-position {bottom,top}]", + " [--summary-position {top,bottom}]", " [--skip-resources-without-violations] [--deep-analysis]", " [--no-fail-on-crash] [--mask MASK] [--scan-secrets-history]", " [--secrets-history-timeout SECRETS_HISTORY_TIMEOUT]", @@ -1063,7 +1063,7 @@ " --block-list-secret-scan BLOCK_LIST_SECRET_SCAN", " List of files to filter out from the secret scanner", " [env var: CKV_SECRETS_SCAN_BLOCK_LIST]", - " --summary-position {bottom,top}", + " --summary-position {top,bottom}", " Chose whether the summary will be appended on top", " (before the checks results) or on bottom (after check", " results), default is on top.", @@ -3319,7 +3319,7 @@ " --version version for kubeval" ], "lightning-flow-scanner": [ - "(node:1938) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.", + "(node:1928) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.", "(Use `node --trace-deprecation ...` to show where the warning was created)", "Try to resolve the errors in the following flows:", "", @@ -5876,180 +5876,39 @@ " Warning level messages displayed, use \"--disable=all", " --enable=classes --disable=W\".", "", - "Format:", - " Formatting checker.", - "", - " --max-line-length ", - " Maximum number of characters on a single line.", - " (default: 100)", - " --ignore-long-lines ", - " Regexp for a line that is allowed to be longer than", - " the limit. (default: ^\\s*(# )??$)", - " --single-line-if-stmt ", - " Allow the body of an if to be on the same line as the", - " test if there is no else. (default: False)", - " --single-line-class-stmt ", - " Allow the body of a class to be on the same line as", - " the declaration if body contains single statement.", - " (default: False)", - " --max-module-lines ", - " Maximum number of lines in a module. (default: 1000)", - " --indent-string ", - " String used as indentation unit. This is usually \" \"", - " (4 spaces) or \" \" (1 tab). (default: )", - " --indent-after-paren ", - " Number of spaces of indent required inside a hanging", - " or continued line. (default: 4)", - " --expected-line-ending-format ", - " Expected format of line ending, e.g. empty (any line", - " ending), LF or CRLF. (default: )", + "Method_args:", + " BaseChecker for method_args.", "", - "Similarities:", - " Checks for similarities and duplicated code.", + " --timeout-methods ", + " List of qualified names (i.e., library.method) which", + " require a timeout parameter e.g.", + " 'requests.api.get,requests.api.post' (default:", + " ('requests.api.delete', 'requests.api.get',", + " 'requests.api.head', 'requests.api.options',", + " 'requests.api.patch', 'requests.api.post',", + " 'requests.api.put', 'requests.api.request'))", "", - " --min-similarity-lines ", - " Minimum lines number of a similarity. (default: 4)", - " --ignore-comments ", - " Comments are removed from the similarity computation", - " (default: True)", - " --ignore-docstrings ", - " Docstrings are removed from the similarity computation", - " (default: True)", - " --ignore-imports ", - " Imports are removed from the similarity computation", - " (default: True)", - " --ignore-signatures ", - " Signatures are removed from the similarity computation", - " (default: True)", + "Classes:", + " Checker for class nodes.", "", - "Basic:", - " --good-names Good variable names which should always be accepted,", - " separated by a comma. (default: ('i', 'j', 'k', 'ex',", - " 'Run', '_'))", - " --good-names-rgxs ", - " Good variable names regexes, separated by a comma. If", - " names match any regex, they will always be accepted", - " (default: )", - " --bad-names Bad variable names which should always be refused,", - " separated by a comma. (default: ('foo', 'bar', 'baz',", - " 'toto', 'tutu', 'tata'))", - " --bad-names-rgxs ", - " Bad variable names regexes, separated by a comma. If", - " names match any regex, they will always be refused", - " (default: )", - " --name-group ", - " Colon-delimited sets of names that determine each", - " other's naming style when the name regexes allow", - " several styles. (default: ())", - " --include-naming-hint ", - " Include a hint for the correct naming format with", - " invalid-name. (default: False)", - " --property-classes ", - " List of decorators that produce properties, such as", - " abc.abstractproperty. Add to this list to register", - " other decorators that produce valid properties. These", - " decorators are taken in consideration only for", - " invalid-name. (default: ('abc.abstractproperty',))", - " --argument-naming-style