mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
module.exports = {
|
|
...require('@ivuorinen/prettier-config'),
|
|
trailingComma: 'all',
|
|
// Add custom options below:
|
|
overrides: [
|
|
{
|
|
files: '*.md',
|
|
options: {
|
|
printWidth: 120,
|
|
proseWrap: 'preserve',
|
|
},
|
|
},
|
|
],
|
|
}
|