mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[CLEANUP] Polish the comments in .editorconfig (#164)

This commit is contained in:
Oliver Klee 2020-11-24 01:50:33 +01:00 committed by GitHub
parent ddecb3009f
commit 1dde5c6556
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,58 +8,58 @@ end_of_line = lf
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
# HTML-Files # HTML files
[*.html] [*.html]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
# CSS-Files # CSS files
[*.css] [*.css]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
# LESS-Files # LESS files
[*.less] [*.less]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
# SCSS-Files # SCSS files
[*.scss] [*.scss]
indent_style = tab indent_style = tab
indent_size = 2 indent_size = 2
# JS-Files # JS files
[*.js] [*.js]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
# PHP-Files # PHP files
[*.php] [*.php]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
# MD-Files # MD files
[*.md] [*.md]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
# ReST-Files # ReST files
[*.rst] [*.rst]
indent_style = space indent_style = space
indent_size = 3 indent_size = 3
# TypoScript-Files # TypoScript files
[*.typoscript,*.ts] [*.typoscript,*.ts]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
# YML-Files # YML files
[{*.yml,*.yaml}] [{*.yml,*.yaml}]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2
# JSON-Files # JSON files
[{*.jsonl}] [{*.jsonl}]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2