| 1234567891011121314151617 |
- /** @type {import('prettier').Config} */
- const config = {
- semi: true,
- singleQuote: true,
- tabWidth: 2,
- trailingComma: 'es5',
- printWidth: 80,
- useTabs: false,
- endOfLine: 'lf',
- bracketSpacing: true,
- arrowParens: 'avoid',
- proseWrap: 'preserve',
- htmlWhitespaceSensitivity: 'css',
- quoteProps: 'as-needed',
- };
- export default config;
|