generated from t3kit/t3kit-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
51 lines (40 loc) · 839 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org
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
indent_style = space
indent_size = 4
# TypeScript/JavaScript/JSON files
[*.{ts,js,json}]
indent_size = 2
# TypoScript/TSconfig files
[*.{typoscript,tsconfig}]
indent_size = 2
# XLF/XML files
[*.{xlf,xml}]
indent_style = tab
# YAML-Files
[*.{yaml,yml}]
indent_size = 2
# ReST-Files
[*.rst]
indent_size = 3
# SQL files
[*.sql]
indent_style = tab
indent_size = 2
# .htaccess
[{_.htaccess,.htaccess}]
indent_style = tab
# HTML files
[*.html]
indent_size = 2
# CSS/SCSS files
[*.{css,scss}]
indent_size = 2