1234567891011121314 |
- module.exports = {
- tabWidth: 4, // 缩进长度
- useTabs: false, // 使用tab缩进
- semi: false, // 句末不使用分号
- singleQuote: true, // 使用单引号
- bracketSpacing: true, // 在对象前后添加空格-eg: { foo: bar }
- arrowParens: 'always', // 单参数箭头函数参数周围使用圆括号-eg: (x) => x
- requirePragma: false, // 无需顶部注释即可格式化
- insertPragma: false, // 已格式化注解
- proseWrap: 'preserve', // 换行符敏感的服务器进行原样包装
- htmlWhitespaceSensitivity: 'ignore', // 对HTML全局空白不敏感
- embeddedLanguageFormatting: 'auto', // 对引用代码进行格式化
- }
|