#### 代码格式化prettier 不依赖当前工具配置,也可以对代码进行格式化; npm install prettier -D 配置Prettierrc useTabes: 使用tab缩进 tabwidth: tab空格是几个 printWidth: 单行字符的长度 singQuote: 使用单引号还是双引号 trailingComma: 在多行输入的尾部逗号是否添加 semi:语句末尾是否加分号 1. 保持文件时,自动格式化--是编辑器的功能--也会读取项目.prettierrc中的配置 注意:vscode设置 Editor: Default Formatter 定义一个默认格式化程序, 该格式化程序优先于所有其他格式化程序设置。必须是提供格式化程序的扩展的标识符 "editor.formatOnSave": true Editor: Format On Save 在保存时格式化文件。格式化程序必须可用,延迟后文件不能保存,并且编辑器不能关闭 2.依赖的配置需要-运行命令 配置 "prettier": "prettier --write ."
npm run prettier
3. 创建prettierignore忽略文件
.prettierrc
{ "useTabs": false, "tabWidth": 2, "printWidth": 80, "singleQuote": true, "trailingComma": "none", "semi": false } .prettierignore /build/* .local .output.js /node_modules/****/*.svg **/*.sh
/public/* 标签:格式化,--,代码,配置,程序,prettier From: https://www.cnblogs.com/fdxjava/p/17085399.html