| 123456789101112131415161718192021222324252627 | # http://editorconfig.orgroot = true[*]# Use hard or soft tabsindent_style = space# Size of a single indentindent_size = tab# Number of columns representing a tab charactertab_width = 2# Use line-feed as EOL indicatorend_of_line = lf# Use UTF-8 character encoding for all filescharset = utf-8# Remove any whitespace characters preceding newline characterstrim_trailing_whitespace = true# Ensure file ends with a newline when savinginsert_final_newline = true[*.md]trim_trailing_whitespace = false
 |