2014-02-20 02:35:38 +00:00
|
|
|
# This file is for unifying the coding style for different editors and IDEs
|
|
|
|
# editorconfig.org
|
|
|
|
|
|
|
|
# WordPress Coding Standards
|
2015-04-12 21:28:58 +00:00
|
|
|
# https://make.wordpress.org/core/handbook/coding-standards/
|
2014-02-20 02:35:38 +00:00
|
|
|
|
|
|
|
root = true
|
|
|
|
|
|
|
|
[*]
|
|
|
|
charset = utf-8
|
|
|
|
end_of_line = lf
|
|
|
|
insert_final_newline = true
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
indent_style = tab
|
|
|
|
|
2018-01-16 03:54:10 +00:00
|
|
|
[*.yml]
|
2014-02-20 02:35:38 +00:00
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
|
|
|
|
2018-03-20 22:14:53 +00:00
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
|
|
|
|
2014-06-24 10:54:41 +00:00
|
|
|
[{*.txt,wp-config-sample.php}]
|
2014-02-20 02:35:38 +00:00
|
|
|
end_of_line = crlf
|