Files
HKSingleParty/03_source/frontend/prettier.config.mjs
louiscklaw 45bac1b3c8 update,
2025-06-15 03:50:15 +08:00

20 lines
408 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;