zoukankan      html  css  js  c++  java
  • Sublime Text 3 配置 PHPCS 插件

    1. Download php code sniffer addon via Package Control in ST3.
    2. Download The php-cs-fixer File From This Website => cs.sensiolabs.org/ (Direct Link => cs.sensiolabs.org/get/php-cs-fixer.phar)
    3. Copy Downloaded File To Your php.exe directory (mine is C:/XAMMP/php/php.exe)
    4. download PHP_CodeSniffer PEAR code package from this page pear.php.net/package/PHP_CodeSniffer/download/All (Direct Link => http://download.pear.php.net/package/PHP_CodeSniffer-1.5.0RC4.tgz)
    5. find PHP_CodeSniffer-1.5.0RC4.tgzPHP_CodeSniffer-1.5.0RC4scriptsphpcs.bat and copy this file too (in your php.exe directory)
    6. copy the first post's config file, change your directory accordingly while writing in Package Settings -> Php Code Sniffer -> Settings - User File. This Method Worked For Me On Sublime Text 3 Build 3047 In Win8 x64 System... No more slow ST2 for me... Cheers
    {
    
    // Path to php on windows installation
    // This is needed as we cannot run phars on windows, so we run it through php
    "phpcs_php_prefix_path": "C:\wampin\php\php5.4.12\php.exe",
    
    // This is the path to the bat file when we installed PHP_CodeSniffer
    "phpcs_executable_path": "C:\wamp\bin\php\php5.4.12\phpcs.bat",
    
    // PHP-CS-Fixer settings
    // Don't want to auto fix issue with php-cs-fixer
    "php_cs_fixer_on_save": false,
    
    // Show the quick panel
    "php_cs_fixer_show_quick_panel": true,
    
    // The fixer phar file is stored here:
    "php_cs_fixer_executable_path": "C:\wampin\php\php5.4.12\php-cs-fixer.phar",
    
    // PHP Linter settings
    // Yes, lets lint the files
    "phpcs_linter_run": true,
    
    // And execute that on each file when saved (php only as per extensions_to_execute)
    "phpcs_linter_command_on_save": true,
    
    // Path to php
    "phpcs_php_path": "C:\wampin\php\php5.4.12\php.exe",
    
    // This is the regex format of the errors
    "phpcs_linter_regex": "(?P<message>.*) on line (?P<line>\d+)",
    
    
    // PHP Mess Detector settings
    // Not turning on the mess detector here
    "phpmd_run": false,
    "phpmd_command_on_save": false,
    "phpmd_executable_path": "",
    "phpmd_additional_args": {}
    }
  • 相关阅读:
    VMwareTools安装笔记
    Oracle常用命令(持续更新)
    window常用命令(持续更新)
    Oracle 中 sys和system帐号的区别
    决策树——排序算法的理论下界
    插入、选择、冒泡、梳排序性能比较
    插入、选择、冒泡排序的综述
    绝知此事要躬行之——插入排序
    Tree 和ls 的使用
    用户目录
  • 原文地址:https://www.cnblogs.com/meetrice/p/3731635.html
Copyright © 2011-2022 走看看