mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
65ada39360
Changes: - Trim trailing whitespace for all files except patches. There isn't really any practical reason to not trim the trailing whitespace in all other files. Binary files or phpt files that include trailing whitespace as part of the test should be manually set in editors/IDEs or by disabling the editorconfig for particular editing. - Add *.ac, *.d, *.l, *.skl, *.re, *.wsdl, *.dtd, *.html, *.rng, *.xml, *.xsd, *.xsl, buildconf, and Makefile* files settings. Closes #4156
35 lines
736 B
INI
35 lines
736 B
INI
# https://editorconfig.org/
|
|
|
|
root = true
|
|
|
|
[*]
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
tab_width = 4
|
|
|
|
[{*.{awk,bat,c,cpp,d,h,l,mk,re,skl,w32,y},Makefile*}]
|
|
indent_size = 4
|
|
indent_style = tab
|
|
|
|
[*.{dtd,html,inc,php,phpt,rng,wsdl,xml,xsd,xsl}]
|
|
indent_size = 4
|
|
indent_style = space
|
|
|
|
[*.{ac,m4,sh,yml}]
|
|
indent_size = 2
|
|
indent_style = space
|
|
|
|
[*.md]
|
|
indent_style = space
|
|
max_line_length = 80
|
|
|
|
[COMMIT_EDITMSG]
|
|
indent_size = 4
|
|
indent_style = space
|
|
max_line_length = 80
|
|
|
|
[*.patch]
|
|
trim_trailing_whitespace = false
|