data-structure-typed/.editorconfig

19 lines
852 B
INI
Raw Normal View History

# Editor configuration, see http://editorconfig.org
root=true # represents the top-level EditorConfig configuration file
[*] # means applicable to all files
2023-11-16 02:14:14 +00:00
charset = utf-8 # Set the file character set to utf-8
indent_style = space # Indent style (tab | space)
indent_size = 2 # indent size
end_of_line = lf # Control line break type (lf | cr | crlf)
trim_trailing_whitespace = true # Remove any whitespace characters at the beginning of the line
2023-11-16 02:14:14 +00:00
insert_final_newline = true # Always insert a new line at the end of the file
[*.md] # Indicates that only md files apply the following rules
max_line_length = off
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_size = 2