UNPKG

postcss-px-to-vwvh

Version:
9 lines (8 loc) 380 B
module.exports = { semi: false, // 结尾是否使用分号 singleQuote: true, // 使用单引号代替双引号 trailingComma: 'none', // 最后一行不以逗号结尾 printWidth: 120, // 单行长度,超过则自动换行 bracketSpacing: true, // 在对象前后添加空格-eg: { foo: bar } jsxBracketSameLine: false // 多属性html标签的‘>’折行放置 }