Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
root = true

[*]
Comment thread
srpatcha marked this conversation as resolved.
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
indent_style = space
indent_size = 4
Comment thread
srpatcha marked this conversation as resolved.

[Makefile]
indent_style = tab

[*.md]
trim_trailing_whitespace = false

[*.{patch,diff}]
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
charset = unset
indent_style = unset
indent_size = unset
24 changes: 24 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Auto detect text files and perform LF normalization
* text=auto

# BitBake recipes and configuration (the bulk of this repository)
*.bb text
*.bbappend text
*.bbclass text
*.inc text
*.conf text
*.cfg text

# Other text files actually present in this repository
*.md text diff=markdown
*.txt text
*.json text
*.xml text

# Binary files actually present in this repository
*.png binary
*.zip binary

# Patch and diff files: keep verbatim (do NOT normalize line endings)
*.patch -text
*.diff -text