mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-04 11:53:55 +00:00

The repository obeys an 100 character soft limit for source lines. However, commit messages generally have lines shorter than 72 characters to make gerrit print them without wrapping. Annoyingly, the editorconfig can't express this and the 100 character limit applies to commit messages, requiring manual formatting. Luckily, when writing commit messages the file `.git/COMMIT_EDITMSG` is open. So we can set its line length to be 72 characters. Change-Id: Id96dcab8ce500ee965e53dd53a51c6761811440e Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com>
75 lines
1.9 KiB
INI
75 lines
1.9 KiB
INI
#
|
|
# Copyright (c) 2017-2024, Arm Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
# Trusted Firmware-A Coding style spec for editors.
|
|
|
|
# References:
|
|
# [EC] http://editorconfig.org/
|
|
# [CONT] contributing.rst
|
|
# [LCS] Linux Coding Style
|
|
# (https://www.kernel.org/doc/html/v4.10/process/coding-style.html)
|
|
# [PEP8] Style Guide for Python Code
|
|
# (https://www.python.org/dev/peps/pep-0008)
|
|
|
|
|
|
root = true
|
|
|
|
# set default to match [LCS] .c/.h settings.
|
|
# This will also apply to .S, .mk, .sh, Makefile, .dts, etc.
|
|
[*]
|
|
# Not specified, but fits current ARM-TF sources.
|
|
charset = utf-8
|
|
|
|
# Not specified, but implicit for "LINUX coding style".
|
|
end_of_line = lf
|
|
|
|
# [LCS] Chapter 1: Indentation
|
|
# "and thus indentations are also 8 characters"
|
|
indent_size = 8
|
|
|
|
# [LCS] Chapter 1: Indentation
|
|
# "Outside of comments,...spaces are never used for indentation"
|
|
indent_style = tab
|
|
|
|
# Not specified by [LCS], but sensible
|
|
insert_final_newline = true
|
|
|
|
# [LCS] Chapter 2: Breaking long lines and strings
|
|
# "The limit on the length of lines is 100 columns"
|
|
# This is a "soft" requirement for Arm-TF, and should not be the sole
|
|
# reason for changes.
|
|
max_line_length = 100
|
|
|
|
# [LCS] Chapter 1: Indentation
|
|
# "Tabs are 8 characters"
|
|
tab_width = 8
|
|
|
|
# [LCS] Chapter 1: Indentation
|
|
# "Get a decent editor and don't leave whitespace at the end of lines."
|
|
# [LCS] Chapter 3.1: Spaces
|
|
# "Do not leave trailing whitespace at the ends of lines."
|
|
trim_trailing_whitespace = true
|
|
|
|
|
|
# Adjustment for ReStructuredText (RST) documentation
|
|
[*.{rst}]
|
|
indent_size = 4
|
|
indent_style = space
|
|
|
|
|
|
# Adjustment for python which prefers a different style
|
|
[*.py]
|
|
# [PEP8] Indentation
|
|
# "Use 4 spaces per indentation level."
|
|
indent_size = 4
|
|
indent_style = space
|
|
|
|
# [PEP8] Maximum Line Length
|
|
# "Limit all lines to a maximum of 79 characters."
|
|
max_line_length = 79
|
|
|
|
[.git/COMMIT_EDITMSG]
|
|
max_line_length = 72
|