2025SELab2-project-Dwengo/prettier.config.js
2025-02-28 20:11:48 +00:00

13 lines
260 B
JavaScript

/**
* @type {import("prettier").Options}
*/
export default {
printWidth: 80,
semi: true,
singleQuote: true,
trailingComma: 'es5',
bracketSpacing: true,
objectWrap: 'preserve',
bracketSameLine: false,
arrowParens: 'always',
};