23 lines
534 B
INI
23 lines
534 B
INI
root = true
|
|
|
|
# NOTE: Keep only EditorConfig properties that Prettier actually respects.
|
|
# Style choices (quotes, bracket spacing, print width, etc.) live in `.prettierrc.js`.
|
|
# Removing pseudo/unsupported keys (quote_type, bracketSpacing, max_line_length) that
|
|
# previously caused editor vs CLI confusion.
|
|
[*]
|
|
charset = utf-8
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = false
|
|
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
[*\.yml]
|
|
indent_size = 2
|
|
|
|
[*.json]
|
|
indent_size = 2
|