We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b922e39 commit 7d33563Copy full SHA for 7d33563
src/lib/prettierFormatter.js
@@ -2,6 +2,7 @@ import fsOperation from "fileSystem";
2
import toast from "components/toast";
3
import appSettings from "lib/settings";
4
import prettierPluginBabel from "prettier/plugins/babel";
5
+import prettierPluginEstree from "prettier/plugins/estree";
6
import prettierPluginGraphql from "prettier/plugins/graphql";
7
import prettierPluginHtml from "prettier/plugins/html";
8
import prettierPluginMarkdown from "prettier/plugins/markdown";
@@ -32,6 +33,7 @@ const CONFIG_FILENAMES = [
32
33
"prettier.config.mjs",
34
];
35
const PRETTIER_PLUGINS = [
36
+ prettierPluginEstree,
37
prettierPluginBabel,
38
prettierPluginHtml,
39
prettierPluginMarkdown,
0 commit comments