/ .prettierrc.cjs
.prettierrc.cjs
 1  module.exports = {
 2    printWidth: 100, // Yes I know prettier says it's not a good idea.
 3    trailingComma: 'all',
 4    singleQuote: true,
 5  
 6    overrides: [
 7      {
 8        files: '*.md',
 9        options: {
10          printWidth: 60,
11        },
12      },
13    ],
14  };