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-format - Parse cmake listfiles and format them nicely.

Author

       Josh Bialkowski
       josh.bialkowski@gmail.com

Description

       Parse cmake listfiles and format them nicely.

       Formatting is configurable by providing a configuration file. The configuration  file  can  be  in  json,
       yaml,  or  python  format.  If  no configuration file is specified on the command line, cmake-format will
       attempt to find a suitable configuration for each ``inputpath`` by  checking  recursively  checking  it's
       parent directory up to the root of the filesystem. It will return the first file it finds with a filename
       that matches '\.?cmake-format(.yaml|.json|.py)'.

       cmake-format can spit out the default configuration for you as starting point for customization. Run with
       `--dump-config [yaml|json|python]`.

       infilepaths

Distribution

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

cmake-format                                       2024-10-06                                    CMAKE-FORMAT(1)

Name

       cmake-format - Parse cmake listfiles and format them nicely.

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

       --dump{lex,parse,parsedb,layout,markup}--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.

       -i, --in-place--check
              Exit with status code 0 if formatting would not change file contents, or status code 1 if it would

       -oOUTFILE_PATH, --outfile-pathOUTFILE_PATH
              Where to write the formatted file. Default is stdout.

       -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-format  [-h]  [--dump-config {yaml,json,python} | -i | -o OUTFILE_PATH] [-c CONFIG_FILE] infilepath
       [infilepath ...]

See Also