/ .prettierrc.cjs
.prettierrc.cjs
 1  module.exports = {
 2    printWidth: 100,
 3    trailingComma: 'all',
 4    singleQuote: true,
 5  
 6    overrides: [
 7      {
 8        files: '*.md',
 9        options: {
10          printWidth: 60,
11        },
12      },
13      {
14        files: 'ARCHITECTURE.md',
15        options: {
16          printWidth: 80,
17        },
18      },
19    ],
20  };