Skip to content
Permalink
main
Go to file
 
 
Cannot retrieve contributors at this time
38 lines (32 sloc) 674 Bytes
# EditorConfig: http://EditorConfig.org
# top-most EditorConfig file
root = true
# utf-8 and Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
# Makefiles always uses tabs
[{Makefile,config.mk}]
indent_style = tab
indent_size = 8
trim_trailing_whitespace = true
# C & Cpp & Ragel
[*.{h,hpp,c,cpp,rl}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
# CSS
[*.css]
indent_style = space
indent_size = 4
tab_width = 4
end_of_line = lf
trim_trailing_whitespace = true
# HTML
[*.html]
indent_style = space
indent_size = 4
tab_width = 4
end_of_line = lf
trim_trailing_whitespace = true