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

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