mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 14:30:41 +00:00
## Summary Add `.editorconfig` for cross-editor formatting consistency, matching existing oxfmt settings. ## Changes - **What**: New `.editorconfig` with 2-space indent, LF line endings, UTF-8, trailing whitespace trimming (except `.md`) Fixes #11073 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-11128-chore-add-editorconfig-for-cross-editor-consistency-33e6d73d365081faabf6fb996144940d) by [Unito](https://www.unito.io)
13 lines
188 B
INI
13 lines
188 B
INI
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|