| ;https://EditorConfig.org
;https://github.com/editorconfig/editorconfig/wiki
root = true
[*]
charset                  = utf-8
trim_trailing_whitespace = true
end_of_line              = lf
insert_final_newline     = true
ij_visual_guides         = 80, 120
[mysql-draw]
indent_size  = 2
indent_style = space
[*.{php, yml, yaml, neon, xml, xsl, json, twig}]
indent_size  = 2
indent_style = space
[*.{md, markdown}]
trim_trailing_whitespace = false
indent_size              = 2
indent_style             = space
[{Makefile, *.mk}]
indent_style = tab
[{Dockerfile, *.Dockerfile}]
indent_size  = 4
indent_style = space
[.editorconfig]
ij_editorconfig_align_group_field_declarations     = true
ij_editorconfig_spaces_around_assignment_operators = true
ij_editorconfig_space_before_comma                 = false
ij_editorconfig_space_after_comma                  = true
 |