mirror of
https://gh.wpcy.net/https://github.com/WPTechnix/wp-settings-framework.git
synced 2026-04-24 23:01:11 +08:00
34 lines
No EOL
519 B
INI
34 lines
No EOL
519 B
INI
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# Default for all files
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
# PHP files (PSR-12)
|
|
[*.php]
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 120
|
|
insert_final_newline = true
|
|
|
|
# YAML (e.g., PHPStan, ECS)
|
|
[*.{yml,yaml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# JSON files
|
|
[*.json]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# Markdown files
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
# Shell scripts
|
|
[*.sh]
|
|
end_of_line = lf |