Sublime Text 3 格式代碼插件 codeFormatter


一款可以對html、JS、CSS、PHP、python代碼格式化的sublime插件

默認快捷鍵ctrl+alt+F,默認可以對html、js、css格式代碼, 如果想對PHP格式化,需要PHP5.6以上版本,而且需要配置sublime的(package setttings > codeFormatter > settings user)中設定php.exe的路徑 ,如下:

 

 1  "codeformatter_php_options":
 2     {
 3         "syntaxes": "php", // Syntax names which must process PHP formatter
 4         "php_path": "C:/wamp/PHP5/php.exe", // Path for PHP executable, e.g. "/usr/lib/php" or "C:/Program Files/PHP/php.exe". If empty, uses command "php" from system environments
 5         "format_on_save": false, // Format on save
 6         "php55_compat": false, // PHP 5.5 compatible mode
 7         "psr1": false, // Activate PSR1 style
 8         "psr1_naming": false, // Activate PSR1 style - Section 3 and 4.3 - Class and method names case
 9         "psr2": true, // Activate PSR2 style
10         "indent_with_space": 4, // Use spaces instead of tabs for indentation
11         "enable_auto_align": true, // Enable auto align of = and =>
12         "visibility_order": true, // Fixes visibility order for method in classes - PSR-2 4.2
13         "smart_linebreak_after_curly": true, // Convert multistatement blocks into multiline blocks
14 
15         // Enable specific transformations. Example: ["ConvertOpenTagWithEcho", "PrettyPrintDocBlocks"]
16         // You can list all available transformations from command palette: CodeFormatter: Show PHP Transformations
17         "passes": [],
18 
19         // Disable specific transformations
20         "exclude": []
21     },

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM