mirror of
https://gitlab.freedesktop.org/pipewire/pipewire
synced 2024-11-05 16:26:16 +00:00
ba653fccfc
These files help editors choose the correct coding style conventions, mostly useful for the indentation style Pipewire uses tab characters of size 8 in all of its codebase except in the meson files and in the gstreamer plugins, which use 2-space indentation
15 lines
250 B
INI
15 lines
250 B
INI
# http://editorconfig.org
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = tab
|
|
indent_size = 8
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
# Use 2 spaces for meson files
|
|
[*.build]
|
|
indent_style = space
|
|
indent_size = 2
|