Download presentation
Presentation is loading. Please wait.
1
利用 EditorConfig 自訂文字編輯器設定
多奇數位創意有限公司 技術總監 黃保翕 ( Will 保哥 ) 部落格:
2
全新 EditorConfig 編輯器設定 EditorConfig 是在開源社群常見的編輯器設定檔 使用方式 設定檔範例
檔案路徑:通常位於專案或方案根目錄下 使用方式 建立 .editorconfig 編輯器設定檔 將檔案加入版本控制系統並與團隊共用一致的編輯器設定 開發人員在寫 Code 的時候,編輯器會自動提示格式錯誤 設定檔範例
3
支援的 EditorConfig 屬性 目前 Visual Studio 2017 RC2 支援的屬性如下
root = true 宣告此 .editorconfig 是否為最上層設定檔 indent_style = space 設定縮排的風格 ( space 或 tab ) indent_size = 4 設定縮排的空白字元數 ( 僅 indent_style = space 時有用 ) tab_width = 4 設定一個 tab 符號的寬度 end_of_line = crlf 設定斷行符號 ( cr , lf , crlf ) charset = utf-8 設定檔案的文字編碼 ( latin1, utf-8, utf-16be, utf-16le ) .NET Code Style Settings For Editorconfig
4
相關連結 EditorConfig 微軟文件 相關文章 EditorConfig Plugins EditorConfig (GitHub)
EditorConfig | Twitter 微軟文件 Code Style Configuration in the VS2017 RC Update Create portable, custom editor settings | Microsoft Docs 相關文章 Maintaining Consistent Coding Conventions With EditorConfig - Trey Hunner Use EditorConfig to Maintain Consistent Coding Styles between Different Editors and IDEs
5
Visual Studio 2017 實例展示 Demonstration 建立一個 Web Application 專案
在專案根目錄加上 .editorconfig 檔案 加入以下內容 root = true [*] indent_style = space [*.cs] indent_size = 2 [*.yml] insert_final_newline = true Visual Studio 2017 實例展示
Similar presentations