logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

cmake-lint - Check cmake listfile for lint

Author

       Josh Bialkowski
       josh.bialkowski@gmail.com

Description

       Check cmake listfile for lint

       infilepaths

Distribution

       The latest version of cmake-lint may be downloaded from https://github.com/cheshirekow/cmake_format

cmake-lint                                         2024-10-06                                      CMAKE-LINT(1)

Name

       cmake-lint - Check cmake listfile for lint

Options

-v, --version
              show program's version number and exit

       -l{error,warning,info,debug}, --log-level{error,warning,info,debug}--dump-config[{yaml,json,python}]
              If specified, print the default configuration to stdout and exit

       -oOUTFILE_PATH, --outfile-pathOUTFILE_PATH
              Write errors to this file. Default is stdout.

       --no-help
              When used with --dump-config, will omit helptext comments in the output

       --no-default
              When used with --dump-config, will omit any unmodified configuration value.

       --suppress-decorations
              Suppress the file title decoration and summary statistics

       -cCONFIG_FILES[CONFIG_FILES...], --config-filesCONFIG_FILES[CONFIG_FILES...]
              path to configuration file(s)

Options Affecting Comment Reflow And Formatting.

--bullet-charBULLET_CHAR
              What character to use for bulleted lists

       --enum-charENUM_CHAR
              What character to use as punctuation after numerals in an enumerated list

       --first-comment-is-literal[FIRST_COMMENT_IS_LITERAL]
              If  comment  markup is enabled, don't reflow the first comment block in each listfile. Use this to
              preserve formatting of your copyright/license statements.

       --literal-comment-patternLITERAL_COMMENT_PATTERN
              If comment markup is enabled, don't reflow any comment block which matches this  (regex)  pattern.
              Default is `None` (disabled).

       --fence-patternFENCE_PATTERN
              Regular expression to match preformat fences in comments default= ``r'^\s*([`~]{3}[`~]*)(.*)$'``

       --ruler-patternRULER_PATTERN
              Regular expression to match rulers in comments default= ``r'^\s*[^\w\s]{3}.*[^\w\s]{3}$'``

       --explicit-trailing-patternEXPLICIT_TRAILING_PATTERN
              If  a  comment  line matches starts with this pattern then it is explicitly a trailing comment for
              the preceding argument. Default is '#<'

       --hashruler-min-lengthHASHRULER_MIN_LENGTH
              If a comment line starts with at least this many consecutive hash characters, then don't  lstrip()
              them off. This allows for lazy hash rulers where the first hash char is not separated by space

       --canonicalize-hashrulers[CANONICALIZE_HASHRULERS]
              If true, then insert a space between the first hash char and remaining hash chars in a hash ruler,
              and normalize its length to fill the column

       --enable-markup[ENABLE_MARKUP]
              enable comment markup parsing and reflow

Options Affecting File Encoding

--emit-byteorder-mark[EMIT_BYTEORDER_MARK]
              If true, emit the unicode byte-order mark (BOM) at the start of the file

       --input-encodingINPUT_ENCODING
              Specify the encoding of the input file. Defaults to utf-8

       --output-encodingOUTPUT_ENCODING
              Specify the encoding of the output file. Defaults to utf-8. Note that cmake only claims to support
              utf-8 so be careful when using anything else

Options Affecting Formatting.

--disable[DISABLE]
              Disable formatting entirely, making cmake-format a no-op

       --line-widthLINE_WIDTH
              How wide to allow formatted cmake files

       --tab-sizeTAB_SIZE
              How many spaces to tab for indent

       --use-tabchars[USE_TABCHARS]
              If true, lines are indented  using  tab  characters  (utf-8  0x09)  instead  of  <tab_size>  space
              characters  (utf-8  0x20). In cases where the layout would require a fractional tab character, the
              behavior of the  fractional indentation is governed by <fractional_tab_policy>

       --fractional-tab-policy{use-space,round-up}
              If <use_tabchars> is True, then the value of this variable indicates how fractional indentions are
              handled during whitespace replacement. If set to 'use-space', fractional indentation  is  left  as
              spaces  (utf-8  0x20).  If  set to `round-up` fractional indentation is replaced with a single tab
              character (utf-8 0x09) effectively shifting the column to the next tabstop

       --max-subgroups-hwrapMAX_SUBGROUPS_HWRAP
              If an argument group contains more than this many sub-groups (parg or kwarg groups) then force  it
              to a vertical layout.

       --max-pargs-hwrapMAX_PARGS_HWRAP
              If a positional argument group contains more than this many arguments, then force it to a vertical
              layout.

       --max-rows-cmdlineMAX_ROWS_CMDLINE
              If  a cmdline positional group consumes more than this many lines without nesting, then invalidate
              the layout (and nest)

       --separate-ctrl-name-with-space[SEPARATE_CTRL_NAME_WITH_SPACE]
              If true, separate flow control names from their parentheses with a space

       --separate-fn-name-with-space[SEPARATE_FN_NAME_WITH_SPACE]
              If true, separate function names from parentheses with a space

       --dangle-parens[DANGLE_PARENS]
              If a statement is wrapped to more than one line, than dangle the closing parenthesis  on  its  own
              line.

       --dangle-align{prefix,prefix-indent,child,off}
              If  the  trailing  parenthesis  must be 'dangled' on its on line, then align it to this reference:
              `prefix`: the start of the statement,  `prefix-indent`: the  start  of  the  statement,  plus  one
              indentation  level, `child`: align to the column of the arguments

       --min-prefix-charsMIN_PREFIX_CHARS
              If  the  statement  spelling length (including space and parenthesis) is smaller than this amount,
              then force reject nested layouts.

       --max-prefix-charsMAX_PREFIX_CHARS
              If the statement spelling length (including space and parenthesis) is larger than the tab width by
              more than this amount, then force reject un-nested layouts.

       --max-lines-hwrapMAX_LINES_HWRAP
              If a candidate layout is wrapped horizontally but it exceeds this  many  lines,  then  reject  the
              layout.

       --line-ending{windows,unix,auto}
              What style line endings to use in the output.

       --command-case{lower,upper,canonical,unchanged}
              Format command names consistently as 'lower' or 'upper' case

       --keyword-case{lower,upper,unchanged}
              Format keywords consistently as 'lower' or 'upper' case

       --always-wrap[ALWAYS_WRAP...]
              A list of command names which should always be wrapped

       --enable-sort[ENABLE_SORT]
              If true, the argument lists which are known to be sortable will be sorted lexicographicall

       --autosort[AUTOSORT]
              If true, the parsers may infer whether or not an argument list is sortable (without annotation).

       --require-valid-layout[REQUIRE_VALID_LAYOUT]
              By  default, if cmake-format cannot successfully fit everything into the desired linewidth it will
              apply the last, most aggressive attempt that it made. If this flag is True, however,  cmake-format
              will print error, exit with non-zero status code, and write-out nothing

Options Affecting Listfile Parsing

--vartags[VARTAGS...]
              Specify variable tags.

       --proptags[PROPTAGS...]
              Specify property tags.

Options Affecting The Linter

--disabled-codes[DISABLED_CODES...]
              a list of lint codes to disable

       --function-patternFUNCTION_PATTERN
              regular expression pattern describing valid function names

       --macro-patternMACRO_PATTERN
              regular expression pattern describing valid macro names

       --global-var-patternGLOBAL_VAR_PATTERN
              regular expression pattern describing valid names for variables with global (cache) scope

       --internal-var-patternINTERNAL_VAR_PATTERN
              regular  expression  pattern  describing valid names for variables with global scope (but internal
              semantic)

       --local-var-patternLOCAL_VAR_PATTERN
              regular expression pattern describing valid names for variables with local scope

       --private-var-patternPRIVATE_VAR_PATTERN
              regular expression pattern describing valid names for privatedirectory variables

       --public-var-patternPUBLIC_VAR_PATTERN
              regular expression pattern describing valid names for public directory variables

       --argument-var-patternARGUMENT_VAR_PATTERN
              regular expression pattern describing valid names for function/macro arguments and loop variables.

       --keyword-patternKEYWORD_PATTERN
              regular expression pattern describing valid names for keywords used in functions or macros

       --max-conditionals-custom-parserMAX_CONDITIONALS_CUSTOM_PARSER
              In the heuristic for C0201, how many conditionals to match within a loop in before considering the
              loop a parser.

       --min-statement-spacingMIN_STATEMENT_SPACING
              Require at least this many newlines between statements

       --max-statement-spacingMAX_STATEMENT_SPACING
              Require no more than this many newlines between statements

       --max-returnsMAX_RETURNS--max-branchesMAX_BRANCHES--max-argumentsMAX_ARGUMENTS--max-localvarsMAX_LOCALVARS--max-statementsMAX_STATEMENTS

Synopsis

cmake-lint  [-h]  [--dump-config  {yaml,json,python}  |  -o  OUTFILE_PATH]  [-c  CONFIG_FILE]  infilepath
       [infilepath ...]

See Also