Add .editorconfig file matching Google's style guides (more or less).

GitOrigin-RevId=14926f6a82eb34f0087e9c52bc1dbca136c2736e

PiperOrigin-RevId: 146824999
This commit is contained in:
Miguel Yanez Barreto 2017-02-07 21:17:10 +00:00 committed by Travis Collins
parent 9159128f9f
commit 420e94c83d

18
.editorconfig Normal file
View File

@ -0,0 +1,18 @@
# http://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = true
[*.java]
max_line_length = 100
continuation_indent_size = 4