mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-10 05:42:50 +00:00
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
import epicConfig from '@epic-web/config/prettier';
|
|
|
|
/** @type {import("prettier").Options} */
|
|
export default {
|
|
...epicConfig,
|
|
semi: true,
|
|
plugins: [
|
|
// ...(sortImports ? ["prettier-plugin-organize-imports"] : []),
|
|
...(epicConfig.plugins || []),
|
|
],
|
|
};
|