chore: Formatting

This commit is contained in:
Lino Silva
2026-04-01 23:43:17 +01:00
parent 03865d6f16
commit a704133a0b
16 changed files with 99 additions and 29 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"endOfLine": "lf",
"overrides": [
{
"files": ["*.yml", "*.yaml"],
"options": {
"tabWidth": 2,
"singleQuote": false,
"printWidth": 120
}
},
{
"files": ["*.ts", "*.tsx"],
"options": {
"parser": "typescript",
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}
]
}