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     },
原文地址:https://www.cnblogs.com/xp796/p/5715510.html