web app, icons

This commit is contained in:
EthanShoeDev
2025-09-10 05:16:15 -04:00
parent 129b1c9759
commit a7e36870d6
36 changed files with 3341 additions and 32 deletions

View File

@@ -0,0 +1,26 @@
import epicConfig from '@epic-web/config/prettier';
import * as astroPrettierPlugin from 'prettier-plugin-astro';
import * as twPrettierPlugin from 'prettier-plugin-tailwindcss';
// 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 || []),
astroPrettierPlugin,
twPrettierPlugin,
],
overrides: [
{
files: '*.astro',
options: {
parser: 'astro',
},
},
],
};