This repository has been archived on 2025-09-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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',
}