2019-02-17 21:21:58 +08:00
|
|
|
# https://editorconfig.org/
|
2016-06-26 23:51:44 +08:00
|
|
|
|
|
|
|
root = true
|
|
|
|
|
2019-02-17 21:21:58 +08:00
|
|
|
[*]
|
Extend wildcard files section in EditorConfig [ci skip]
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
2019-06-10 04:53:58 +08:00
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
end_of_line = lf
|
|
|
|
charset = utf-8
|
2019-02-17 21:21:58 +08:00
|
|
|
tab_width = 4
|
|
|
|
|
2022-07-18 18:34:20 +08:00
|
|
|
[{*.{awk,bat,c,cpp,d,dasc,h,l,re,skl,w32,y},Makefile*}]
|
2016-06-26 23:51:44 +08:00
|
|
|
indent_size = 4
|
|
|
|
indent_style = tab
|
2017-10-12 05:20:57 +08:00
|
|
|
|
Extend wildcard files section in EditorConfig [ci skip]
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
2019-06-10 04:53:58 +08:00
|
|
|
[*.{dtd,html,inc,php,phpt,rng,wsdl,xml,xsd,xsl}]
|
2017-10-12 05:20:57 +08:00
|
|
|
indent_size = 4
|
|
|
|
indent_style = space
|
2016-06-26 23:51:44 +08:00
|
|
|
|
Extend wildcard files section in EditorConfig [ci skip]
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
2019-06-10 04:53:58 +08:00
|
|
|
[*.{ac,m4,sh,yml}]
|
2016-06-26 23:51:44 +08:00
|
|
|
indent_size = 2
|
|
|
|
indent_style = space
|
2017-10-12 05:20:57 +08:00
|
|
|
|
|
|
|
[*.md]
|
|
|
|
indent_style = space
|
2019-02-17 21:21:58 +08:00
|
|
|
max_line_length = 80
|
|
|
|
|
|
|
|
[COMMIT_EDITMSG]
|
|
|
|
indent_size = 4
|
|
|
|
indent_style = space
|
|
|
|
max_line_length = 80
|
Extend wildcard files section in EditorConfig [ci skip]
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
2019-06-10 04:53:58 +08:00
|
|
|
|
|
|
|
[*.patch]
|
|
|
|
trim_trailing_whitespace = false
|