-
Notifications
You must be signed in to change notification settings - Fork 312
Closed
Labels
Description
Description of the problem
We should have a .editorconfig file instead of tests for endline and trailing whitespaces.
Example of the problem
Currently we have to explicitly review each PR for extra endline, trailing whitespace etc.
References/Other comments
We can simply insert these rules and dev's editor will enforce them for us.
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true