Some checks failed
Basic Checks / license-check (push) Has been cancelled
Basic Checks / include-check (push) Has been cancelled
Basic Checks / style-check (push) Has been cancelled
Basic Checks / docs-check (push) Has been cancelled
Basic Checks / python-tests (push) Has been cancelled
Basic Checks / pin-validation (push) Has been cancelled
Basic Checks / cmake-checks (push) Has been cancelled
Basic Checks / frozen-tools-check (push) Has been cancelled
Publish or Update docker image for head of branch / prepare-tags (push) Has been cancelled
Release or update docker image for a released mbed-os version / prepare-tags (push) Has been cancelled
Publish or Update docker image for head of branch / build-container (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/amd64) (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/arm64) (push) Has been cancelled
Publish or Update docker image for head of branch / deploy-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / build-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/amd64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/arm64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / deploy-container (push) Has been cancelled
Prune temporary docker images / prune-images (push) Has been cancelled
38 lines
884 B
Plaintext
38 lines
884 B
Plaintext
# Mbed OS code style definition file for astyle
|
|
|
|
# Don't create backup files, let git handle it
|
|
suffix=none
|
|
|
|
# K&R style
|
|
style=kr
|
|
|
|
# 1 TBS addition to k&r, add braces to one liners
|
|
# Use -j as it was changed in astyle from brackets to braces, this way it is compatible with older astyle versions
|
|
-j
|
|
|
|
# 4 spaces, convert tabs to spaces
|
|
indent=spaces=4
|
|
convert-tabs
|
|
|
|
# Indent switches and cases
|
|
indent-switches
|
|
|
|
# Remove spaces in and around parentheses
|
|
unpad-paren
|
|
|
|
# Insert a space after if, while, for, and around operators
|
|
pad-header
|
|
pad-oper
|
|
|
|
# Pointer/reference operators go next to the name (on the right)
|
|
align-pointer=name
|
|
align-reference=name
|
|
|
|
# Attach { for classes and namespaces
|
|
attach-namespaces
|
|
attach-classes
|
|
|
|
# Extend longer lines, define maximum 120 value. This results in aligned code,
|
|
# otherwise the lines are broken and not consistent
|
|
max-continuation-indent=120
|