2014-09-02 18:41:43 +00:00
|
|
|
# This file is for unifying the coding style for different editors and IDEs
|
2013-08-25 19:11:19 +00:00
|
|
|
# editorconfig.org
|
2014-09-02 18:41:43 +00:00
|
|
|
|
|
|
|
# WordPress Coding Standards
|
2016-05-27 01:48:49 +00:00
|
|
|
# https://make.wordpress.org/core/handbook/coding-standards/
|
2014-09-02 18:41:43 +00:00
|
|
|
|
2013-08-25 19:11:19 +00:00
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
charset = utf-8
|
|
|
|
end_of_line = lf
|
|
|
|
indent_size = 4
|
|
|
|
tab_width = 4
|
|
|
|
indent_style = tab
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
|
2014-07-30 19:09:01 +00:00
|
|
|
[*.txt]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|
2015-06-03 22:11:49 +00:00
|
|
|
[*.{md,json,yml}]
|
|
|
|
trim_trailing_whitespace = false
|
2014-09-22 19:15:16 +00:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
2021-10-07 02:03:13 +00:00
|
|
|
|
|
|
|
[*.json]
|
|
|
|
indent_style = tab
|