Skip to content

Commit 47a88f2

Browse files
committed
Misc: Add .editorconfig file for editor autosetup
Signed-off-by: Anton Komlev <anton.komlev@arm.com> Change-Id: Ifa9d0d1b0ae9ff8d72c5fd25508f35400b83962c
1 parent 682bc19 commit 47a88f2

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

.editorconfig

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
#
2+
# Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3+
#
4+
# SPDX-License-Identifier: BSD-3-Clause
5+
#
6+
7+
# References:
8+
#
9+
# EditorConfig rules https://editorconfig.org/
10+
# TF-M coding rules https://tf-m-user-guide.trustedfirmware.org/contributing/coding_guide.html
11+
12+
root = true
13+
14+
################################
15+
# Default settings for all files
16+
[*]
17+
charset = uft-8
18+
end_of_line = lf
19+
indent_size = 4
20+
tab_width = 4
21+
indent_style = space
22+
trim_trailing_whitespace = true
23+
insert_final_newline = true
24+
25+
################################
26+
# Assembler
27+
[*.{S,s}]
28+
indent_size = 8
29+
tab_width = 8
30+
31+
# The file categories below are left empty intentionally
32+
# for potential customisation in future
33+
34+
################################
35+
# C and C++
36+
[*.{c,h,cpp,hpp}]
37+
38+
################################
39+
# Python code
40+
[*.py]
41+
42+
################################
43+
#CMake specific settings
44+
[{CMakeLists.txt,*.cmake}]
45+
46+
################################
47+
#Documentation
48+
[*.{rst,md}]
49+
50+
################################
51+
# json,yaml and xml files
52+
[{*.json,*.yaml,*.xml}]

0 commit comments

Comments
 (0)