Files
fressh/apps/mobile/prettier.config.mjs
EthanShoeDev 38e16a9536 mono repo
2025-09-09 22:27:48 -04:00

15 lines
455 B
JavaScript

import epicConfig from '@epic-web/config/prettier';
// Sometimes this plugin can remove imports that are being edited.
// As a workaround we will only use this in the cli. (pnpm run fmt)
// const sortImports = process.env.SORT_IMPORTS === "true";
/** @type {import("prettier").Options} */
export default {
...epicConfig,
semi: true,
plugins: [
// ...(sortImports ? ["prettier-plugin-organize-imports"] : []),
...(epicConfig.plugins || []),
],
};