1234567891011 |
- /** @type {import('prettier').Config} */
- export default {
- printWidth: 100,
- semi: true,
- vueIndentScriptAndStyle: true,
- singleQuote: true,
- trailingComma: 'all',
- proseWrap: 'never',
- htmlWhitespaceSensitivity: 'strict',
- endOfLine: 'auto',
- };
|