Browse Source

add .editorconfig

pull/162/head
cxm 2 years ago
parent
commit
71968c1932
1 changed files with 30 additions and 0 deletions
  1. +30
    -0
      .editorconfig

+ 30
- 0
.editorconfig View File

@@ -0,0 +1,30 @@
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false
insert_final_newline = false

[*.json]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true

# C coding style based on Linux kernel.
# https://www.kernel.org/doc/html/v5.0/process/coding-style.html

[*.c]
indent_style = tab
indent_size = 8

[*.h]
indent_style = tab
indent_size = 8

Loading…
Cancel
Save