Tag: PHPCS

  • How to add PHPCS checking to Sublime Text

    How to add PHPCS checking to Sublime Text

    If you’re rocking a shiny in stall of PHPCS and want to integrate it into Sublime Text then, thankfully, the process is relatively straightforward…

    1. Make sure you have PHP Code Sniffer installed as a package.
    2. Then head to Settings -> Package Settings -> PHP Code Sniffer -> Settings – User to configure any settings. You can find a full list here.

    Technically, that’s all there is to it.

    (more…)
  • PHPCS and WordPress: Which sniff to use?

    PHPCS and WordPress: Which sniff to use?

    Which WordPress sniff?

    When using PHPCS for checking WordPress code, there are a number of sniffs/rulesets that you can use…

    1. WordPress-Core. This cover off the WordPress core coding standards
    2. WordPress-Docs. This one checks for WordPress inline documentation standards
    3. WordPress-Extra. This is an extended set of rules with recommended best practices, not sufficiently covered in the WordPress core coding standards. In other words, above and beyond the core standards. This also includes the WordPress-Core standards.
    4. WordPress. This is a complete set with all of the sniffs – the equivalent of WordPress-Extra and WordPress-Docs

    As a developer, I’m not sure why you’d want to use anything other than the whole set, so I’d recommend using the WordPress sniffs.

    Use a VIP sniff?

    If you’re using the set-up that I documented, you’ll also have the VIP sniffs installed as well.

    WordPress VIP are an enterprise-level hosting company, dealing with some of the biggest websites there are. As a result, they have additional requirements around tighert security and better performance.

    • WordPressVIPMinimum – for use with projects on the (older) WordPress.com VIP platform.
    • WordPress-VIP-Go – for use with projects on the (newer) VIP Go platform.

    All customers have been moved off the original WordPress.com platform, so you should only really use WordPress-VIP-Go.

    These rulesets contain only the rules which are considered to be “errors” and “warnings” and use rules from the WordPress Coding Standards (WPCS) project, as well as the VariableAnalysis standard. VIP have certain differences on their platform which may mean that certain things don’t work (e.g. they have a mainly read-only file system), so these sniffs will highlight this and offering up links to documentation and general solutions.

    I would recommend using this sniff along with WordPress.

    How to check which sniffs you have

    On the command line run phpcs -i to view the sniffs that you have installed locally. This is my output…

    The installed coding standards are MySource, PEAR, PSR1, PSR2, PSR12, Squiz, Zend, WordPress-VIP-Go, WordPressVIPMinimum, PHPCompatibility, PHPCompatibilityParagonieRandomCompat, PHPCompatibilityParagonieSodiumCompat, PHPCompatibilityWP, Modernize, NormalizedArrays, Universal, PHPCSUtils, VariableAnalysis, WordPress, WordPress-Core, WordPress-Docs and WordPress-Extra
  • How to add PHPCS checking to Visual Studio Code

    How to add PHPCS checking to Visual Studio Code

    If you’re rocking VS Code and would like to automate PHPCS checking from within the editor, look no further.

    Not installed PHPCS yet? Check out my guide first. Once that’s done, thankfully, the process to do this is quite simple…

    (more…)
  • Installing PHPCS on MacOS

    Installing PHPCS on MacOS

    If you’re developing for WordPress then, in my opinion, use of PHPCS to help validate your code is critical.

    However, anyone can develop without necessarily being a whizz with the command line (and I include myself in that bracket). So, having just gone through a PHPCS install with a freshly-baked MacBook, I thought I’d share the process. If only for me the next time I do it.

    (more…)