Files
HKSingleParty/03_source/frontend/prettier.config.mjs
2025-05-28 09:55:51 +08:00

16 lines
340 B
JavaScript

/**
* @type {import("prettier").Config}
* Need to restart IDE when changing configuration
* Open the command palette (Ctrl + Shift + P) and execute the command > Reload Window.
*/
const config = {
semi: true,
tabWidth: 2,
endOfLine: 'lf',
printWidth: 100,
singleQuote: true,
trailingComma: 'es5',
};
export default config;