serverless/.editorconfig
Erik Erikson 1b0e9aed6b Add Initial .editorconfig File & Docs
Editor config allows IDEs to consistently behave according to the project's proscribed formatting requirements.  This means that fewer spurious white space changes will be committed and that fewer generated white space characters will have to be eliminated by individual developers whose defaults are different than those of the Serverless project.
2016-09-22 12:41:30 -07:00

11 lines
232 B
INI

root = true ; top-most EditorConfig file
; Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true