Skip to content

Instantly share code, notes, and snippets.

@monochromer
Last active November 9, 2015 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monochromer/ae2a9bcfa1f25476d088 to your computer and use it in GitHub Desktop.
Save monochromer/ae2a9bcfa1f25476d088 to your computer and use it in GitHub Desktop.
Пример файла editorconfig
# http://editorconfig.org
# парсер не будет искать другие конфиги родительских папках
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 4
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
[*.{html,svg}]
indent_style = tab
indent_style = tab
[*.js]
indent_style = tab
[*.md]
trim_trailing_whitespace = false
# сторонние библиотеки или минифицированные файлы, лучше не трогать
[*.min.*]
indent_style = ignore
trim_trailing_whitespace = false
insert_final_newline = ignore
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment