diff options
| author | Srikanth Patchava <srpatcha@users.noreply.github.com> | 2026-04-24 19:41:22 -0700 |
|---|---|---|
| committer | Khem Raj <khem.raj@oss.qualcomm.com> | 2026-06-08 23:16:33 -0700 |
| commit | 90afa64a7a79b82ee4fcffab2b2e8959fec63b68 (patch) | |
| tree | 36a9faa1ab7f42ce21107a6a06adeac5d4c0f793 /.editorconfig | |
| parent | 95720367b2370b39b8a294d682e4fa5c69ebda07 (diff) | |
| download | meta-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-- | .editorconfig | 23 |
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 @@ | |||
| 1 | root = true | ||
| 2 | |||
| 3 | [*] | ||
| 4 | end_of_line = lf | ||
| 5 | insert_final_newline = true | ||
| 6 | trim_trailing_whitespace = true | ||
| 7 | charset = utf-8 | ||
| 8 | indent_style = space | ||
| 9 | indent_size = 4 | ||
| 10 | |||
| 11 | [Makefile] | ||
| 12 | indent_style = tab | ||
| 13 | |||
| 14 | [*.md] | ||
| 15 | trim_trailing_whitespace = false | ||
| 16 | |||
| 17 | [*.{patch,diff}] | ||
| 18 | end_of_line = unset | ||
| 19 | insert_final_newline = unset | ||
| 20 | trim_trailing_whitespace = unset | ||
| 21 | charset = unset | ||
| 22 | indent_style = unset | ||
| 23 | indent_size = unset | ||
