1
0
mirror of https://gitlab.gnome.org/GNOME/evince synced 2024-06-28 13:44:46 +00:00
evince/.editorconfig
Pablo Correa Gómez 14ffe0ae66 .editorconfig: allow trailing whitespaces in some non-code files
Since these files are either old, have a format that often introduces
spaces, or are not completely under evince's control (like translation
files).
2023-06-20 15:27:24 +00:00

50 lines
768 B
INI

# this file helps keeping consistent code style in all the project. IDEs will
# automatically use the code style as defined in this file
# see https://editorconfig.org/
root=true
# Unix-style newlines with a newline ending every file
[*]
end_of_line=lf
insert_final_newline=true
charset=utf-8
trim_trailing_whitespace=true
[*.{c,h}]
indent_style=tab
indent_size=8
[*.xml*]
indent_style=space
indent_size=2
[*.css]
indent_style=space
indent_size=4
[*.json]
indent_style=space
indent_size=4
[meson.build]
indent_style=space
indent_size=2
[snapcraft.yaml]
indent_style=space
indent_size=2
[.gitlab-ci.yml]
indent_style=space
indent_size=4
[ChangeLog*]
trim_trailing_whitespace=false
[NEWS]
trim_trailing_whitespace=false
[*.po]
trim_trailing_whitespace=false