refactor: migrate from spaces to tabs

This commit is contained in:
Stefan Imhoff
2022-08-24 10:18:01 +02:00
parent 9a2d79b1b3
commit 056e9c45e6
2 changed files with 17 additions and 15 deletions

View File

@@ -5,7 +5,6 @@ root = true
[*] [*]
charset = utf-8 charset = utf-8
indent_size = 2 indent_style = tab
indent_style = space
end_of_line = lf end_of_line = lf
insert_final_newline = true insert_final_newline = true

View File

@@ -2,13 +2,16 @@
"endOfLine": "lf", "endOfLine": "lf",
"semi": true, "semi": true,
"singleQuote": true, "singleQuote": true,
"tabWidth": 2, "useTabs": true,
"tabWidth": 4,
"printWidth": 100,
"trailingComma": "es5", "trailingComma": "es5",
"overrides": [ "overrides": [
{ {
"files": "*.md", "files": "*.md",
"options": { "options": {
"singleQuote": false "singleQuote": false,
"tabWidth": 2
} }
} }
] ]