Skip to content

Instantly share code, notes, and snippets.

@codingwithchris
Created May 5, 2019 16:07
Show Gist options
  • Save codingwithchris/835dc0105b65007924d67cacd05b3e2a to your computer and use it in GitHub Desktop.
Save codingwithchris/835dc0105b65007924d67cacd05b3e2a to your computer and use it in GitHub Desktop.
An config file to unify basic coding style across various IDEs & projects
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org
root = true
[*]
indent_style = tab
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
max_line_length = null
[{*.yml}]
indent_style = space
indent_size = 2
[*.txt]
end_of_line = crlf
[*.md]
trim_trailing_whitespace = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment