Add EditorConfig (#1119)
* Add EditorConfig file. This allows users with a wide variety of editors to easily code in OpenZeppelin's preferred 2 space indentation code style. See https://editorconfig.org for more information. * Eslint: Always disallow trailing space * Eslint: Error on missing EOL at file endpull/1125/head
parent
f5b0bb3246
commit
ae2980b072
@ -0,0 +1,12 @@ |
||||
# EditorConfig is awesome: https://EditorConfig.org |
||||
|
||||
# top-most EditorConfig file |
||||
root = true |
||||
|
||||
[*] |
||||
charset = utf-8 |
||||
end_of_line = lf |
||||
indent_size = 2 |
||||
indent_style = space |
||||
insert_final_newline = true |
||||
trim_trailing_whitespace = true |
Loading…
Reference in new issue