-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.editorconfig
More file actions
35 lines (32 loc) · 901 Bytes
/
.editorconfig
File metadata and controls
35 lines (32 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#==============================================================================
# EditorConfig (.editorconfig)
#
# Purpose:
# Defines coding style conventions for editors and IDEs.
# Maintains consistent formatting across different editors.
#
# Settings:
# - 2-space indentation for all files
# - LF line endings (Unix-style)
# - UTF-8 character encoding
# - Trim trailing whitespace (except Markdown)
# - No final newline
#
# Support:
# Works with VS Code, Sublime Text, Vim, IntelliJ, Atom, etc.
# Requires EditorConfig plugin in most editors.
#
# Documentation:
# https://editorconfig.org
#==============================================================================
# editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
[*.md]
trim_trailing_whitespace = false