目標:javascript
首先確認了 Prettier 對 TypeScript 有良好的支持.html
https://github.com/prettier/p...java
固然這個依賴 VS Code 的插件, https://github.com/prettier/p...
在 VS Code 中安裝以後, 經過 .prettierrc
文件配置, 臨時的配置好比(雖然我不喜歡 Tab 但公司用啊):react
{ "tabWidth": 4, "useTabs": true }
配置文件也能夠是下面幾種:git
package.json
- prettier
key.prettierrc
.prettier.config.js
不過這樣還不夠, 須要在 VS Code 打開 editor.formatOnSave
選項.
這個選項在 User Settings 當中能夠找到, 把值設置爲 true
.github
默認狀況下, Prettier 會將 JSON 文件也作格式化,
找到的一個方案是在 User Settings 裏改爲這樣的設置:typescript
{ "[javascript]": { "editor.formatOnSave": true, "editor.formatOnPaste": false }, "[javascriptreact]": { "editor.formatOnSave": true, "editor.formatOnPaste": false }, "[typescript]": { "editor.formatOnSave": true, "editor.formatOnPaste": false }, "[typescriptreact]": { "editor.formatOnSave": true, "editor.formatOnPaste": false } }
參考 https://code.visualstudio.com...npm
其中 [typescriptreact]
對應的是 tsx
文件, 須要單獨聲明.json
爲了方便遷移已有的代碼, 也就是直接用 prettier
命令行進行格式化, 好比:bash
prettier --write --config .prettierrc src/*.ts
大體上是經過 npm script 結合模塊來完成的,
參考 https://prettier.io/docs/en/u...