1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00
task/website/prettier.config.js
2024-03-21 01:04:07 +00:00

14 lines
208 B
JavaScript

module.exports = {
trailingComma: 'none',
singleQuote: true,
overrides: [
{
files: ['*.md', '*.mdx'],
options: {
printWidth: 80,
proseWrap: 'always'
}
}
]
};