Skip to content
Snippets Groups Projects
Commit 2746a86c authored by Saurabh Kumar's avatar Saurabh Kumar
Browse files

chore: fix .editorconfig for Makefile & markdown

Makefile must have tab used for indentation, while in Markdown files two trailing spaces means a linebreak.
parent f4c2fdca
No related branches found
No related tags found
No related merge requests found
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs.
# See: http://editorconfig.org
root = true root = true
[*] [*]
...@@ -7,3 +9,9 @@ indent_size = 4 ...@@ -7,3 +9,9 @@ indent_size = 4
indent_style = space indent_style = space
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[Makefile]
indent_style = tab
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment