diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index b0a41f9..0000000 --- a/.prettierrc +++ /dev/null @@ -1,7 +0,0 @@ -{ - "insertPragma": false, - "proseWrap": "always", - "singleAttributePerLine": true, - "plugins": ["@prettier/plugin-xml", "prettier-plugin-sh"], - "overrides": [{ "files": ".prettierrc", "options": { "parser": "json" } }] -} diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..8cb4a40 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,17 @@ +{ + "insertPragma": false, + "overrides": [ + { + "files": ".prettierrc", + "options": { + "parser": "json" + } + } + ], + "plugins": [ + "@prettier/plugin-xml", + "prettier-plugin-sh" + ], + "proseWrap": "always", + "singleAttributePerLine": true +}