backups/prettier.config.js

11 lines
168 B
JavaScript
Raw Normal View History

2024-05-11 11:46:23 +02:00
/**
* @type { import("prettier").Config }
*/
export default {
trailingComma: 'all',
tabWidth: 4,
semi: true,
singleQuote: true,
endOfLine: 'lf'
}