| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * Prettier 配置文件
- * 用于定义代码格式化的规则
- */
- module.exports = {
- /**
- * 换行宽度,当代码宽度达到多少时换行
- * @type {number}
- */
- printWidth: 120,
- /**
- * 是否在语句末尾添加分号
- * @type {boolean}
- */
- semi: true,
- /**
- * 是否在 Vue 文件中缩进 script 和 style 标签
- * @type {boolean}
- */
- vueIndentScriptAndStyle: true,
- /**
- * 是否使用单引号
- * @type {boolean}
- */
- singleQuote: true,
- /**
- * 是否在多行对象、数组等的末尾添加逗号
- * @type {string}
- */
- trailingComma: 'all',
- /**
- * 是否在 Markdown 文件中换行
- * @type {string}
- */
- proseWrap: 'never',
- /**
- * HTML 空白字符敏感度
- * @type {string}
- */
- htmlWhitespaceSensitivity: 'strict',
- /**
- * 行尾结束符
- * @type {string}
- */
- endOfLine: 'auto',
- };
|