mirror of
https://github.com/go-task/task.git
synced 2025-10-08 23:02:02 +02:00
Co-authored-by: Pete Davison <pd93.uk@outlook.com> Co-authored-by: Andrey Nering <andreynering@users.noreply.github.com>
20 lines
313 B
JavaScript
20 lines
313 B
JavaScript
/**
|
|
* @see https://prettier.io/docs/configuration
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
const config = {
|
|
trailingComma: 'none',
|
|
singleQuote: true,
|
|
overrides: [
|
|
{
|
|
files: ['*.md'],
|
|
options: {
|
|
printWidth: 80,
|
|
proseWrap: 'always'
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default config;
|