Skip to content

Commit

Permalink
Fix .editorconfig for Markdown, Bazel, and Python (#13483)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiesnape committed Jun 3, 2020
1 parent fb7d0a0 commit 3e41dab
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .editorconfig
Expand Up @@ -6,10 +6,17 @@ root = true

# Unix-style newlines with a newline ending every file
[*]
charset = utf
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 80

[*.md]
trim_trailing_whitespace = false

[*.{bazel,bzl,py}]
indent_size = 4
max_line_length = 79

0 comments on commit 3e41dab

Please sign in to comment.