Skip to content

Instantly share code, notes, and snippets.

@arlandi
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save arlandi/5ce485836f4a5cb16a47 to your computer and use it in GitHub Desktop.

Select an option

Save arlandi/5ce485836f4a5cb16a47 to your computer and use it in GitHub Desktop.
root = true
[*]
charset = utf-8
end_of_line = LF
trim_trailing_whitespace = true
insert_final_newline = true
# PHP http://make.wordpress.org/core/handbook/coding-standards/php/
[*.php]
indent_style = tab
indent_size = 4
insert_final_newline = true
# html is not minified so reduce character output by using real tabs
# use indent size 4 for parity with PHP
[*.html]
indent_style = tab
indent_size = 4
[*.mustache]
indent_style = tab
indent_size = 4
[*.xml]
indent_style = tab
indent_size = 4
# shouldn't be editing css anyway
[*.css]
indent_style = space
indent_size = 2
# scss-lint standards
[*.scss]
indent_style = space
indent_size = 2
insert_final_newline = true
# coffeelint standards
[*.coffee]
indent_style = space
indent_size = 2
# jshint standards
[*.js]
indent_style = space
indent_size = 2
# Matches the exact style of the files generated by binaries that use them
[{coffeelint.json,composer.json,package.json,.travis.yml}]
indent_style = space
indent_size = 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment