aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorYann Gautier <yann.gautier@st.com>2020-08-19 19:07:26 +0200
committerManish Pandey <manish.pandey2@arm.com>2020-12-03 15:39:23 +0000
commit279f77b4926577b3fe529ffeed4033aedfcd4d4a (patch)
treed370e013142e3c9d3d841193e9af73719769dd63 /.editorconfig
parent99ddfc0e463dc646069f017d55db4b1a5b1c2d2a (diff)
downloadtrusted-firmware-a-279f77b4926577b3fe529ffeed4033aedfcd4d4a.tar.gz
.editorconfig: set max line length to 100
Relax the 80 character line length, as done in checkpatch, since Linux 5.7. Change-Id: I093a2e6a45336339193173f7ff6a461279cf411d Signed-off-by: Yann Gautier <yann.gautier@st.com>
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/.editorconfig b/.editorconfig
index f523ca19da..12f786de5a 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2017-2019, Arm Limited and Contributors. All rights reserved.
+# Copyright (c) 2017-2020, Arm Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
@@ -38,10 +38,10 @@ indent_style = tab
insert_final_newline = true
# [LCS] Chapter 2: Breaking long lines and strings
-# "The limit on the length of lines is 80 columns"
+# "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 = 80
+max_line_length = 100
# [LCS] Chapter 1: Indentation
# "Tabs are 8 characters"