mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
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.
11 lines
232 B
INI
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
|