.prettierrc -> .prettierrc.json

This commit is contained in:
Aminda Suomalainen 2024-07-07 09:59:36 +03:00
parent e0ee01ae12
commit 12c7abf641
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
2 changed files with 17 additions and 7 deletions

View File

@ -1,7 +0,0 @@
{
"insertPragma": false,
"proseWrap": "always",
"singleAttributePerLine": true,
"plugins": ["@prettier/plugin-xml", "prettier-plugin-sh"],
"overrides": [{ "files": ".prettierrc", "options": { "parser": "json" } }]
}

17
.prettierrc.json Normal file
View File

@ -0,0 +1,17 @@
{
"insertPragma": false,
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
}
],
"plugins": [
"@prettier/plugin-xml",
"prettier-plugin-sh"
],
"proseWrap": "always",
"singleAttributePerLine": true
}