加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.prettierrc.js 809 Bytes
一键复制 编辑 原始数据 按行查看 历史
简言Pro 提交于 2023-08-01 10:07 . 3.0初始化
module.exports = {
printWidth: 120,
tabWidth: 2,
tabs: false,
quoteProps: 'as-needed',
tailingComma: 'all',
bracketSpacing: true,
jsxBracketSameLine: false,
arrowParens: 'always',
// 行位不需要分号
semi: true,
// 使用单引号
singleQuote: true,
//末尾逗号
trailingComma: 'none',
// 让函数(名)和后面的括号之间加个空格
'javascript.format.insertSpaceBeforeFunctionParenthesis': true,
// 让vue中的js按编辑器自带的ts格式进行格式化
'vetur.format.defaultFormatter.js': 'vscode-typescript',
// 让prettier使用eslint的代码格式进行校验
eslintIntegration: true,
// 指定 HTML 文件的全局空白区域敏感度, "ignore" - 空格被认为是不敏感的
htmlWhitespaceSensitivity: 'ignore',
endOfLine: 'auto',
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化