Conn screen ui

This commit is contained in:
EthanShoeDev
2025-09-07 23:11:33 -04:00
parent 883e520ebc
commit ef83a4c4eb
3 changed files with 203 additions and 34 deletions

14
prettier.config.mjs Normal file
View File

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