2025SELab2-project-Dwengo/prettier.config.js
2025-02-20 13:24:37 +01:00

13 lines
259 B
JavaScript

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