Configure 'prettier' for YAML files in .werft folder

This commit is contained in:
Moritz Eysholdt 2022-07-05 10:49:59 +00:00 committed by Robo Quat
parent b8cee4b58c
commit 9c85e91cda
2 changed files with 11 additions and 1 deletions

View File

@ -2,5 +2,13 @@
"printWidth": 120, "printWidth": 120,
"tabWidth": 4, "tabWidth": 4,
"endOfLine": "auto", "endOfLine": "auto",
"trailingComma": "all" "trailingComma": "all",
"overrides": [
{
"files": [".werft/**/*.yaml"],
"options": {
"tabWidth": 2
}
}
]
} }

2
.werft/.prettierignore Normal file
View File

@ -0,0 +1,2 @@
vm/charts/**
vm/manifests/**