summaryrefslogtreecommitdiffstats
path: root/.editorconfig
diff options
context:
space:
mode:
authorSrikanth Patchava <srpatcha@users.noreply.github.com>2026-04-24 19:41:22 -0700
committerKhem Raj <khem.raj@oss.qualcomm.com>2026-06-08 23:16:33 -0700
commit90afa64a7a79b82ee4fcffab2b2e8959fec63b68 (patch)
tree36a9faa1ab7f42ce21107a6a06adeac5d4c0f793 /.editorconfig
parent95720367b2370b39b8a294d682e4fa5c69ebda07 (diff)
downloadmeta-openembedded-90afa64a7a79b82ee4fcffab2b2e8959fec63b68.tar.gz
chore: add .editorconfig and .gitattributes
Add editor configuration and line ending normalization for consistent development across platforms. Signed-off-by: Srikanth Patchava <srpatcha@users.noreply.github.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig23
1 files changed, 23 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000000..b53503c7e8
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,23 @@
1root = true
2
3[*]
4end_of_line = lf
5insert_final_newline = true
6trim_trailing_whitespace = true
7charset = utf-8
8indent_style = space
9indent_size = 4
10
11[Makefile]
12indent_style = tab
13
14[*.md]
15trim_trailing_whitespace = false
16
17[*.{patch,diff}]
18end_of_line = unset
19insert_final_newline = unset
20trim_trailing_whitespace = unset
21charset = unset
22indent_style = unset
23indent_size = unset