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
indent_size = 2
indent_style = space
indent_style = tab
end_of_line = lf
insert_final_newline = true

View File

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