1
0
mirror of https://github.com/go-task/task.git synced 2025-01-08 04:04:08 +02:00
task/docs/prettier.config.js
Pete Davison 7c93741670
feat: docusaurus v3 (#1432)
* feat: docusaurus v3

* feat: update release tool to stop it from converting links - this is now done use mdx plugins

* fix: broken links

* feat: more github links and prettier config

* chore: changelog

* fix: blog emoji
2023-12-21 01:59:29 +00:00

14 lines
208 B
JavaScript

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