12345678910111213141516171819 |
- module.exports = {
- printWidth: 100,
- semi: true,
- vueIndentScriptAndStyle: true,
- singleQuote: true,
- trailingComma: 'all',
- proseWrap: 'never',
- htmlWhitespaceSensitivity: 'strict',
- endOfLine: 'auto',
- plugins: ['prettier-plugin-packagejson'],
- overrides: [
- {
- files: '.*rc',
- options: {
- parser: 'json',
- },
- },
- ],
- };
|