[TOC] #### 1. 前言 --- [點擊下載 EditorConfig for VS Code 插件](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig) VSCode 編輯器本身是不支持 EditorConfig 代碼格式化的,需要安裝插件才可以正常使用 EditorConfig 格式化代碼 #### 2. 配置 --- **Mac** 使用【? + ? + P】,輸入【editorconfig】,按下回車鍵,就可以根據(jù) VSCode 配置自動生成 .editorconfig 文件 ![](https://img.itqaq.com/art/content/7e2a9a82c114eacda396f12e406e6ba5.gif) 接下來,我們查看插件配置,發(fā)現(xiàn)只有兩個配置項,如下圖所示 ![](https://img.itqaq.com/art/content/8b251d9ae4f332bdc4774db619241c5a.png) Editorconfig: Generate Auto Automatically generates an .editorconfig file according to your current editor settings. 編輯器配置:自動生成 根據(jù)當(dāng)前編輯器設(shè)置自動生成 .editorconfig 文件。 該配置項的值默認(rèn)為 true,當(dāng)值設(shè)置為 false 時,會根據(jù) EditorConfig 默認(rèn)模板生成 .editorconfig 文件 ```json { "editorconfig.generateAuto": true } ``` Editorconfig: Template If generateAuto is false, this template path will be used for each newly-generated .editorconfig file. 編輯器配置:模板 如果 generateAuto 為false,則此模板路徑將用于每個新生成的 .editorconfig 文件。 當(dāng) generateAuto 為 false 時,該配置項才會使用到 假設(shè) generateAuto 為 false,生成 .editorconfig 文件默認(rèn)使用默認(rèn)模板。我們可以自定義模板文件路徑,示例如下 ```json { "editorconfig.template": "/Users/liang/.editorconfig_tpl" } ```