Sublime text 3格式化代码插件psr2风格

常用的格式化插件有CodeFomatter 和 phpfmt,个人更喜欢CodeFormatter一点儿。

##安装:
1、Ctrl+Shift+P,输入CodeFormatter,然后回车,即可安装。

##配置:
1、Preferences->Browser Packages,回到上一级目录,即Data目录下,新建CodeFormatter文件夹,并在里面创建php文件夹,并将本地的php安装目录中的php.exe和php7ts.dll文件copy进来。目录结构为Sublime Text 3\Data\CodeFormatter\php\

2、打开Preferences->Package Settings->CodeFormatter->Settings-User添加配置,将Data\CodeFormatter\php\php.exe添加到php_path,如:

{
    "codeformatter_debug": false,

    "codeformatter_php_options":
    {
        "syntaxes": "php", // Syntax names which must process PHP formatter
        "php_path": "Data\\CodeFormatter\\php\\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
        "format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
        "php55_compat": false, // PHP 5.5 compatible mode
        "psr1": false, // Activate PSR1 style
        "psr1_naming": false, // Activate PSR1 style - Section 3 and 4.3 - Class and method names case
        "psr2": true, // Activate PSR2 style
        "indent_with_space": 4, // Use spaces instead of tabs for indentation
        "enable_auto_align": true, // Enable auto align of = and =>
        "visibility_order": true, // Fixes visibility order for method in classes - PSR-2 4.2
        "smart_linebreak_after_curly": true, // Convert multistatement blocks into multiline blocks

        // Enable specific transformations. Example: ["ConvertOpenTagWithEcho", "PrettyPrintDocBlocks"]
        // You can list all available transformations from command palette: CodeFormatter: Show PHP Transformations
        "passes": [],

        // Disable specific transformations
        "excludes": []
    }
}

3、在需要格式化的文件中使用Ctrl+Alt+f即可格式化代码。

注:第一步配置中的php版本最好选用7.2以下的版本,不然CodeFormatter会报错的。参考:https://blog.csdn.net/leedaning/article/details/100104452

本文地址:https://blog.csdn.net/leedaning/article/details/100105175
Author:leedaning

你可能感兴趣的:(IDE)