Skip to content

Commit

Permalink
Edits .editorconfig.
Browse files Browse the repository at this point in the history
Now supposedly enforces crlf (Windows) newlines in dm/dmm files when using the webUI, similar to .gitattributes.
Also adds standard .yml and .py settings commonly found in other .editorconfigs I've looked at, because why not?
  • Loading branch information
PsiOmegaDelta committed Feb 3, 2017
1 parent f920d4f commit bb6e622
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .editorconfig
@@ -1,4 +1,22 @@
root = true

[*]
insert_final_newline = false
trim_trailing_whitespace = true

[*.dm]
end_of_line = crlf
indent_style = tab
indent_size = 4

[*.dmm]
end_of_line = crlf

[*.py]
indent_style = space
indent_size = 4

[*.yml]
indent_style = space
indent_size = 2

0 comments on commit bb6e622

Please sign in to comment.