Files
HKSingleParty/03_source/frontend/prettier.config.mjs
louiscklaw db805f23b6 update
2025-05-28 21:06:12 +08:00

17 lines
392 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',
plugins: ['@ianvs/prettier-plugin-sort-imports'],
};
export default config;