-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
用 Prettier 美化代码 #18
Comments
我其实非常讨厌prettier对 (
a,
b,
c
) 这个有什么option来修改吗?查了半天没查到 |
找到了如何设置吗? |
我好想没遇到这个问题,怎么复现? |
可以尝试下在编辑器中做如下配置,利用 eslint 和 tslint 来设置格式化规则: "prettier.eslintIntegration": true,
"prettier.tslintIntegration": true, |
https://prettier.io/docs/en/ignore.html 貌似加 |
Eslint 解决了代码格式检查的问题,同时,一些有用的提示能让我们发现 bug 和无用代码(如
no-unused-vars, no-extra-bind, no-implicit-globals
)。但是,eslint 并不能自动帮我们美化代码,自动让代码风格统一,格式优美。EditorConfig 部分解决了这个问题,它解决了代码缩进,行末不出现空格符等问题,但是对于统一整个代码的风格,这些做得还是太少了。Prettier 很好地解决了剩下的问题,通过配置,我们可以制定想要的代码风格,然后通过脚本或编辑器插件来一键格式化/美化代码。安装使用
安装
使用
编辑器设置
一般我们配合编辑器使用 Prettier,这样我们在写代码时即可美化代码,及时看到效果。以 sublime 为例,可以这么设置:
1、安装 JsPrettier 插件
首先要确定已经全局或局部安装了 prettier 的 npm 包。
ctrl/cmd + shift + p
输入 Install Package2、使用 JsPrettier
ctrl/cmd + shift + p
输入 JsPrettier: Format Code.点击即可格式化当前文件代码。
或者设置快捷键
{ "keys": ["super+alt+f"], "command": "js_prettier" }
。3、编写自己的配置文件
如果不编写自己的配置文件,一般会使用 sublime JsPrettier 插件自带的配置文件。我们希望使用项目自己的配置文件,可以在项目根目录下编写
.prettierrc
文件。prettier 查找配置的方式首先会找当前目录下的 .prettierrc 文件,找不到会一直向上级目录查找,直到找到或找不到。
参考配置
参考文档
The text was updated successfully, but these errors were encountered: