Skip to content

Commit

Permalink
Change end_of_line capitalization
Browse files Browse the repository at this point in the history
The documentation[1] defines lowercase values. Since this file is
likely to be used as an example or starting point, it's better for it
to follow the convention, even if the uppercase value would also work.

[1] https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
  • Loading branch information
fernandoacorreia authored and xuhdev committed Oct 14, 2018
1 parent 3bcbf14 commit 736451a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
@@ -1,7 +1,7 @@
root = true

[*]
end_of_line = LF
end_of_line = lf
charset = utf-8
max_line_length = 80

Expand Down
4 changes: 2 additions & 2 deletions plugin/editorconfig-core-py/.editorconfig
Expand Up @@ -4,9 +4,9 @@ root = true
indent_style = space
trim_trailing_whitespace = true
indent_size = 4
end_of_line = LF
end_of_line = lf

[*.yml]
indent_style = space
indent_size = 2
end_of_line = LF
end_of_line = lf
2 changes: 1 addition & 1 deletion tests/spec/.editorconfig
@@ -1,4 +1,4 @@
[*.rb]
indent_style = space
indent_size = 2
end_of_line = LF
end_of_line = lf

0 comments on commit 736451a

Please sign in to comment.