Files
My-TS-Fullstack/chapter2/.prettierrc.mjs
T
jiawei a1401c68f5 feat(chapter2): set up styled app shell
Add the App Router page and nested layout, configure Tailwind and shadcn styling, include local fonts and background assets, and install the supporting UI and lint dependencies.
2026-08-30 10:20:06 +08:00

12 lines
234 B
JavaScript

const config = {
singleQuote: true,
trailingComma: 'all',
printWidth: 100,
proseWrap: 'never',
endOfLine: 'auto',
semi: true,
tabWidth: 4,
htmlWhitespaceSensitivity: 'strict',
};
export default config;