|
123456789101112131415161718192021 |
- module.exports = {
- singleQuote: true,
- trailingComma: 'all',
- printWidth: 100,
- proseWrap: 'never',
- endOfLine: 'lf',
- overrides: [
- {
- files: '.prettierrc',
- options: {
- parser: 'json',
- },
- },
- {
- files: 'document.ejs',
- options: {
- parser: 'html',
- },
- },
- ],
- };
|