Files
HKSingleParty/03_source/frontend/prettier.config.mjs
louiscklaw 834f58bde1 update,
2025-05-30 01:14:10 +08:00

19 lines
403 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;