# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true
charset = utf-8

# Get rid of whitespace to avoid diffs with a bunch of EOL changes
trim_trailing_whitespace = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# CSS-Files
[*.css]
indent_style = tab

# HTML-Files
[*.html]
indent_style = tab

# TXT-Files
[*.txt]
indent_style = tab

# TMPL-Files
[*.tmpl]
indent_style = tab

# LESS-Files
[*.less]
indent_style = tab

# SCSS-Files
[*.scss]
indent_style = tab

# SASS-Files
[*.sass]
indent_style = tab

# JS-Files
[*.js]
indent_style = tab

# JSON-Files
[*.json]
indent_style = tab

# YML-Files
[*.yml]
indent_style = tab

# Makefile
[Makefile]
indent_style = tab

# PHP-Files
[*.php]
indent_style = tab

# ReST-Files
[*.rst]
indent_style = space
indent_size = 3

# MD-Files
[*.md]
indent_style = space
indent_size = 4

# .travis.yml
[.travis.yml]
indent_style = tab

# TypeScript
[*.ts]
indent_style = tab

# TypoScript
[*.ts2]
indent_style = space
indent_size = 2

# XLF-Files
[*.xlf]
indent_style = tab

# SQL-Files
[*.sql]
indent_style = tab
