2018-08-21 12:35:28 +02:00
|
|
|
# EditorConfig is a file format and collection of text editor plugins
|
|
|
|
# for maintaining consistent coding styles between different editors
|
|
|
|
# and IDEs. Most popular editors support this either natively or via
|
|
|
|
# plugin.
|
|
|
|
#
|
|
|
|
# Check https://editorconfig.org for details.
|
|
|
|
|
2017-07-17 12:15:47 +02:00
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
charset = utf-8
|
|
|
|
|
2018-08-21 12:35:28 +02:00
|
|
|
[*.mak]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 8
|
|
|
|
file_type_emacs = makefile
|
|
|
|
|
2017-07-17 12:15:47 +02:00
|
|
|
[Makefile*]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 8
|
2018-08-21 12:35:28 +02:00
|
|
|
file_type_emacs = makefile
|
2017-07-17 12:15:47 +02:00
|
|
|
|
|
|
|
[*.{c,h}]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
2018-08-21 12:35:28 +02:00
|
|
|
|
2019-05-30 11:40:28 +02:00
|
|
|
[*.sh]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 4
|
|
|
|
|
2019-05-08 15:42:51 +02:00
|
|
|
[*.{s,S}]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 8
|
|
|
|
file_type_emacs = asm
|
|
|
|
|
2018-08-21 12:35:28 +02:00
|
|
|
[*.{vert,frag}]
|
|
|
|
file_type_emacs = glsl
|
|
|
|
|
|
|
|
[*.json]
|
|
|
|
indent_style = space
|
|
|
|
file_type_emacs = python
|