mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
14 lines
208 B
JavaScript
14 lines
208 B
JavaScript
module.exports = {
|
|
trailingComma: 'none',
|
|
singleQuote: true,
|
|
overrides: [
|
|
{
|
|
files: ['*.md', '*.mdx'],
|
|
options: {
|
|
printWidth: 80,
|
|
proseWrap: 'always'
|
|
}
|
|
}
|
|
]
|
|
};
|