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