mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:16:12 +01:00
[CLEANUP] Adopt .editorconfig settings from the TYPO3 core (#176)
Also drop redundancies and sort the entries.
This commit is contained in:
parent
dee89c5266
commit
373c7965b4
2 changed files with 62 additions and 83 deletions
|
@ -5,66 +5,45 @@ root = true
|
||||||
[*]
|
[*]
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
# HTML files
|
|
||||||
[*.html]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
# CSS files
|
|
||||||
[*.css]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
|
|
||||||
# LESS files
|
|
||||||
[*.less]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
# SCSS files
|
|
||||||
[*.scss]
|
|
||||||
indent_style = tab
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
# JS files
|
# JS files
|
||||||
[*.js]
|
[*.js]
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
# PHP files
|
|
||||||
[*.php]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
# MD files
|
|
||||||
[*.md]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
# ReST files
|
|
||||||
[*.rst]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 3
|
|
||||||
|
|
||||||
# TypoScript files
|
|
||||||
[*.typoscript]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
# YML files
|
|
||||||
[{*.yml,*.yaml}]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
# JSON files
|
# JSON files
|
||||||
[{*.jsonl}]
|
[*.json]
|
||||||
indent_style = space
|
indent_style = tab
|
||||||
|
|
||||||
|
# package.json
|
||||||
|
[package.json]
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
# XML files
|
# ReST files
|
||||||
[*.xml]
|
[*.rst]
|
||||||
indent_style = space
|
indent_size = 3
|
||||||
indent_size = 4
|
max_line_length = 80
|
||||||
|
|
||||||
|
# SQL files
|
||||||
|
[*.sql]
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# TypoScript files
|
||||||
|
[*.{typoscript,tsconfig}]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# YAML files
|
||||||
|
[{*.yml,*.yaml}]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# XLF files
|
||||||
|
[*.xlf]
|
||||||
|
indent_style = tab
|
||||||
|
|
||||||
|
# .htaccess
|
||||||
|
[.htaccess]
|
||||||
|
indent_style = tab
|
||||||
|
|
Loading…
Reference in a new issue