mirror of
https://github.com/eclipse/wakaama.git
synced 2025-05-08 23:31:37 +08:00

cmake-format ensures that our CMake code adheres to the format accepted by cmake-format. The code style is based on default one, with some minor adjustments.
18 lines
337 B
Plaintext
18 lines
337 B
Plaintext
with section("format"):
|
|
# Same as for our C code
|
|
line_width = 120
|
|
tab_size = 4
|
|
|
|
# Smaller diffs
|
|
dangle_parens = True
|
|
|
|
# Settling cross platform disputes
|
|
line_ending = 'unix'
|
|
|
|
# Format keywords consistently
|
|
keyword_case = 'upper'
|
|
|
|
with section("markup"):
|
|
# What character to use for bulleted lists
|
|
bullet_char = '-'
|