wp-settings-framework/.editorconfig
2025-08-11 23:59:59 +05:00

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