We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e434aa commit 3686503Copy full SHA for 3686503
1 file changed
packages/pluggable-widgets-tools/src/utils/formatting.ts
@@ -4,7 +4,7 @@ import { format, Options } from "prettier";
4
import { toolsRoot, widgetRoot } from "../widget/paths";
5
6
const baseConfigPath = join(toolsRoot, "./configs/prettier.base.json");
7
-const widgetConfigPath = join(widgetRoot, "./pretier.config.js");
+const widgetConfigPath = join(widgetRoot, "./prettier.config.js");
8
export const prettierConfigPath = existsSync(widgetConfigPath) ? widgetConfigPath : baseConfigPath;
9
10
let prettierTypescriptConfig: Options | undefined;
0 commit comments