mirror of
https://codeberg.org/HPCesia/AstralHalo.git
synced 2025-04-08 17:34:27 +08:00
Refactor project structure and add new components - Add Navbar and SideMenu components - Update Layout and MainLayout - Add config and type definitions - Remove unused assets and components - Update README and gitignore
14 lines
298 B
JavaScript
14 lines
298 B
JavaScript
/** @type {import('prettier').Config} */
|
|
module.exports = {
|
|
printWidth: 120,
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'es5',
|
|
useTabs: false,
|
|
|
|
plugins: [require.resolve('prettier-plugin-astro')],
|
|
|
|
overrides: [{ files: '*.astro', options: { parser: 'astro' } }],
|
|
};
|