| 1234567891011121314151617181920212223242526 |
- module.exports = {
- singleQuote: true,
- trailingComma: 'all',
- printWidth: 100,
- proseWrap: 'never',
- endOfLine: 'lf',
- overrides: [
- {
- files: '.prettierrc',
- options: {
- parser: 'json',
- },
- },
- {
- files: 'document.ejs',
- options: {
- parser: 'html',
- },
- },
- ],
- plugins: [
- 'prettier-plugin-organize-imports',
- 'prettier-plugin-packagejson',
- 'prettier-plugin-two-style-order',
- ],
- };
|