Difference between revisions of "Joomla CodeSniffer"

From Joomla! Documentation

(Undo revision 102288 by Javiparati (talk) - This is still usefull - please don't delete !)
(9 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{page|needs technical review|This page needs expanded installation instructions, especially for Windows-based systems}}
 
 
 
== A Nose For Joomla ==
 
== A Nose For Joomla ==
  
Line 17: Line 15:
 
==Installation==
 
==Installation==
  
First of all you have to install the [http://pear.php.net/package/PHP_CodeSniffer/ PHP CodeSniffer]. This set of files is intended to work with phpcs version 1.3, so behavior with any other version is undefined. One way to do this is to start the console (cmd.exe in windows environments) and type:
+
First of all you have to install the [http://pear.php.net/package/PHP_CodeSniffer/ PHP CodeSniffer]. This set of files is intended to work with phpcs version 1.4, so behavior with any other version is undefined. One way to do this is to start the console (cmd.exe in windows environments) and type:
 +
 
 +
<code>pear install PHP_CodeSniffer</code>
 +
 
 +
To specify a specific version of the PHP CodeSniffer, type:
  
<code>pear install PHP_CodeSniffer-1.3.2</code>
+
<code>pear install PHP_CodeSniffer-1.4.x</code> (specify a number for x, versions 1.4.0 through 1.4.5 are available)
  
 
Pear will handle the whole installation by itself.
 
Pear will handle the whole installation by itself.
  
Then download and unzip the [https://github.com/joomla/joomla-platform/tree/master/build/phpcs Joomla! CodeSniffer] and copy the contents of it into /path/to/PHP_CodeSniffer/Standards/Joomla.
+
Then download and unzip the [https://github.com/joomla/coding-standards Joomla! CodeSniffer] and copy the contents of it into /path/to/PHP_CodeSniffer/Standards/Joomla.
  
 
In Unix systems this path is usually /usr/lib/php/PHP/PHP_CodeSniffer/Standards/Joomla but this varies from system to system. In Xubuntu 12.04, the path is /usr/share/php/PHP/CodeSniffer/Standards/Joomla.
 
In Unix systems this path is usually /usr/lib/php/PHP/PHP_CodeSniffer/Standards/Joomla but this varies from system to system. In Xubuntu 12.04, the path is /usr/share/php/PHP/CodeSniffer/Standards/Joomla.
Line 50: Line 52:
 
While everybody loves the console as it is with no doubt the most effective way to do whatever you need to do.. sometimes even linux gurus need a little bit of comfort.
 
While everybody loves the console as it is with no doubt the most effective way to do whatever you need to do.. sometimes even linux gurus need a little bit of comfort.
  
Fortunately there is a plugin available for eclipse and netbeans that integrates the CodeSniffer in our favorite IDE, so any coding standard violations are shown like "normal" errors.
+
Fortunately there is a plugin available for Eclipse, Netbeans and PHP Storm that integrates the CodeSniffer into your favorite IDE, so any coding standard violations are shown like "normal" errors.
  
 
=== Netbeans ===
 
=== Netbeans ===
Line 99: Line 101:
 
See: the [http://www.jetbrains.com/phpstorm/webhelp/using-php-code-sniffer-tool.html JetBrains documentation page for setting the Code Sniffer]  and also  [http://blog.jetbrains.com/webide/2012/03/checking-your-code-with-php-code-sniffer-in-phpstorm-4-0/ phpStorm Blog])
 
See: the [http://www.jetbrains.com/phpstorm/webhelp/using-php-code-sniffer-tool.html JetBrains documentation page for setting the Code Sniffer]  and also  [http://blog.jetbrains.com/webide/2012/03/checking-your-code-with-php-code-sniffer-in-phpstorm-4-0/ phpStorm Blog])
  
 +
For users on ubuntu using phpStorm. Don't listen instructions at http://www.jetbrains.com/phpstorm/webhelp/using-php-code-sniffer-tool.html#d59626e1126 because there is no working bat (windows file) on linux system. To validate your CodeSniffer choose /usr/bin/phpcs launcher.
 +
 +
Under Settings->Inspections when you choose joomla profile, in the tree below, search for PHP and open it and than make sure that PHP Code Sniffer validation checkbox is checked. Otherwise PHP Code Sniffer won't sniff your code.
 +
 +
On ubuntu you install code standards with:
 +
cd /usr/share/php/PHP/CodeSniffer/Standards
 +
sudo git clone http://github.com/joomla/coding-standards.git Joomla
 
===== Installing Joomla Sniff =====
 
===== Installing Joomla Sniff =====
  
if you are using Xampp,
+
# get the sniffers from the [https://github.com/joomla/coding-standards coding standards repo]
# unpack Joomla CodeSniffer (remember that the sniffers can be found at [https://github.com/joomla/coding-standards coding standards repo]) rules under \xampp\php\PEAR\PHP\CodeSniffer\Standards\Joomla
+
# unpack Joomla CodeSniffer rules under:
 +
## If you are using XAMPP ''\xampp\php\PEAR\PHP\CodeSniffer\Standards\Joomla''
 +
## If not maybe you should check here: ''/usr/share/php/PHP/CodeSniffer/Standards''
 
# Go to Settings (CTRL-ALT-S) and search for "PHP Code Sniffer Validation", click the button Validate to force reload of rules from disk
 
# Go to Settings (CTRL-ALT-S) and search for "PHP Code Sniffer Validation", click the button Validate to force reload of rules from disk
# Joomla is available in the list
+
# Joomla should be now available in the list. See following image:
  
 
[[Image:PhpStorm6CodeSniffer.png|left|thumb|200px|1) PHPStorm  6.x CodeSniffer]]
 
[[Image:PhpStorm6CodeSniffer.png|left|thumb|200px|1) PHPStorm  6.x CodeSniffer]]
 
<div style="clear: both"></div>
 
<div style="clear: both"></div>
 +
 +
===== Installing Joomla Code style =====
 +
 +
It's nice to be able to check that the standards are respected, but it's even nicer if phpstorm helps you formatting properly too as you are coding.
 +
To add joomla code style to phpstorm
 +
# first get the xml scheme file from here: https://github.com/betweenbrain/phpstorm-joomla-code-style
 +
# Then save the file in phpstorm [http://www.jetbrains.com/phpstorm/webhelp/project-and-ide-settings.html#d231397e460 home directory]: <phpstorm home directory>/config/codestyles/Joomla.xml
 +
# restart phpstorm, and you should be able to select Joomla from the Code Style > Scheme select box
  
 
==== PHP PSR-0, PSR-1 and PSR-2 ====
 
==== PHP PSR-0, PSR-1 and PSR-2 ====
Line 126: Line 145:
 
# PSR is available in the list
 
# PSR is available in the list
  
==== PHPStorm 3.x / Alternative method ====
+
==== PHPStorm / Alternative method ====
'''NOTE''': This method is outdated, but it might be useful if you are looking for a different integration. It also demonstrates the use of external tools in PHPStorm - so it shouldn't be deleted.
+
'''NOTE''': This method is '''outdated''', but it might be useful if you are looking for a different integration. It also demonstrates the use of external tools in PHPStorm - so it ''shouldn't be deleted''.
  
<del>There is currently no plugin available</del> The CodeSniffer can also be integrated easily as an external tool. PHPStorm will display the output in the console, including clickable links containing line and column numbers to the files that contain errors.
+
The CodeSniffer can also be integrated easily as an external tool. PHPStorm will display the output in the console, including clickable links containing line and column numbers to the files that contain errors.
  
 
* Click on "Settings" and search for "External tools"
 
* Click on "Settings" and search for "External tools"

Revision as of 13:13, 15 August 2013

A Nose For Joomla[edit]

This is a custom coding standard for the PHP CodeSniffer that attempts to codify and enforce the Joomla coding standards.

Why?[edit]

- Coherent and consisting coding practice makes the files look more professional. Conflicting styles in the same project (or worse, the same file) not only look sloppy, they encourage further sloppiness.

- When all code complies with the same standard, bad code is easier for everyone to spot.

- It makes it easier for someone new to a particular file in the project to find and fix errors, or extend functionality.

- If there is no consistent standard maintained, the sometimes developers will reformat the code to suit themselves. This causes a wide range of changes in the code repository, and if there is a later problem, a significant change could be lost in the chaff produced by a diff.

Installation[edit]

First of all you have to install the PHP CodeSniffer. This set of files is intended to work with phpcs version 1.4, so behavior with any other version is undefined. One way to do this is to start the console (cmd.exe in windows environments) and type:

pear install PHP_CodeSniffer

To specify a specific version of the PHP CodeSniffer, type:

pear install PHP_CodeSniffer-1.4.x (specify a number for x, versions 1.4.0 through 1.4.5 are available)

Pear will handle the whole installation by itself.

Then download and unzip the Joomla! CodeSniffer and copy the contents of it into /path/to/PHP_CodeSniffer/Standards/Joomla.

In Unix systems this path is usually /usr/lib/php/PHP/PHP_CodeSniffer/Standards/Joomla but this varies from system to system. In Xubuntu 12.04, the path is /usr/share/php/PHP/CodeSniffer/Standards/Joomla. Windows based system with XAMPP have the following path: PATH_TO_XAMMP\php\PEAR\PHP\CodeSniffer\Standards (for example: C:\xampp\php\PEAR\PHP\CodeSniffer\Standards)

Use

pear config-get php_dir

to find out where the PEAR directory is on your system, then add "/PHP/PHP_CodeSniffer/Standards" to it.

Usage[edit]

You invoke the custom standard by

phpcs --standard=Joomla file/to/sniff

To test a platform file using the provided platform coding standards use

phpcs --standard=build/phpcs/Joomla path/to/file/or/folder

Further documentation on the use of phpcs can be found at: [1]

IDE integration[edit]

While everybody loves the console as it is with no doubt the most effective way to do whatever you need to do.. sometimes even linux gurus need a little bit of comfort.

Fortunately there is a plugin available for Eclipse, Netbeans and PHP Storm that integrates the CodeSniffer into your favorite IDE, so any coding standard violations are shown like "normal" errors.

Netbeans[edit]

For netbeans you have to install the sniffer plugin first. You can download the plugin here.

  1. Start your netbeans IDE
  2. Open Tools => Plugins => Downloaded and press Add Plugin
  3. Choose the loaded nbm file and confirm the installation
  4. Now there is a new tab in Tools => Options => PHP called "PHPCodeSniffer"
  5. You have to set the path to the phpcs.bat from the installed PHP_CodeSniffer PEAR package
    • for Unix based systems the path is something like /usr/bin/phpcs
    • in XAMPP (windows) you can find the file in the php root folder (e.g. C:\xampp\php\phpcs.bat)
  6. As "standard" type "Joomla" to use the Joomla! standard
  7. now you can click test Settings to check the settings and finish the installation by pressing Ok
  8. Open he task window (Window => Tasks) to sniff your code.
  9. Most time it is a good idea to filter the task (show only in edited file or create an own filter which displays only sniff errors)

Eclipse[edit]

1) Eclipse PTI


Installation is a breeze and follows the usual pattern:

  1. Help => Install new Software...
  2. Work with: Fill in one of the update site URLs found here: http://www.phpsrc.org/eclipse/pti/
  3. Select the desired tools
  4. Restart Eclipse.
2) Eclipse PTI settings

You are now able to sniff for code violations against common standards like PEAR or Zend etc.

To sniff against your own standards, all you have to do is specify their location and activate them (see screen shot 2)

  1. Window => Preferences
  2. PHP Tools => PHP CodeSniffer

Happy sniffing

PHPStorm[edit]

PHPStorm[edit]

File:PhpStorm4CodeSniffer.png
1) PHPStorm 4.x CodeSniffer

CodeSniffer is supported out of the box in PHPStorm, just go to settings, and under "Inspections" you will see the list of Sniff you have installed.

See: the JetBrains documentation page for setting the Code Sniffer and also phpStorm Blog)

For users on ubuntu using phpStorm. Don't listen instructions at http://www.jetbrains.com/phpstorm/webhelp/using-php-code-sniffer-tool.html#d59626e1126 because there is no working bat (windows file) on linux system. To validate your CodeSniffer choose /usr/bin/phpcs launcher.

Under Settings->Inspections when you choose joomla profile, in the tree below, search for PHP and open it and than make sure that PHP Code Sniffer validation checkbox is checked. Otherwise PHP Code Sniffer won't sniff your code.

On ubuntu you install code standards with: cd /usr/share/php/PHP/CodeSniffer/Standards sudo git clone http://github.com/joomla/coding-standards.git Joomla

Installing Joomla Sniff[edit]
  1. get the sniffers from the coding standards repo
  2. unpack Joomla CodeSniffer rules under:
    1. If you are using XAMPP \xampp\php\PEAR\PHP\CodeSniffer\Standards\Joomla
    2. If not maybe you should check here: /usr/share/php/PHP/CodeSniffer/Standards
  3. Go to Settings (CTRL-ALT-S) and search for "PHP Code Sniffer Validation", click the button Validate to force reload of rules from disk
  4. Joomla should be now available in the list. See following image:
File:PhpStorm6CodeSniffer.png
1) PHPStorm 6.x CodeSniffer
Installing Joomla Code style[edit]

It's nice to be able to check that the standards are respected, but it's even nicer if phpstorm helps you formatting properly too as you are coding. To add joomla code style to phpstorm

  1. first get the xml scheme file from here: https://github.com/betweenbrain/phpstorm-joomla-code-style
  2. Then save the file in phpstorm home directory: <phpstorm home directory>/config/codestyles/Joomla.xml
  3. restart phpstorm, and you should be able to select Joomla from the Code Style > Scheme select box

PHP PSR-0, PSR-1 and PSR-2[edit]

Installing PHP PSR-0, PSR-1 and PSR-2 Sniff[edit]

A CodeSniffer sniff to check against the PSR-x Coding Standard

Download files at

if you are using Xampp,

  1. unpack PSR-1 CodeSniffer rules under \xampp\php\PEAR\PHP\CodeSniffer\Standards\PSR (SPR or any directory will work)
  2. Go to Settings (CTRL-ALT-S) and search for "PHP Code Sniffer Validation", click the button Validate to force reload of rules from disk
  3. PSR is available in the list

PHPStorm / Alternative method[edit]

NOTE: This method is outdated, but it might be useful if you are looking for a different integration. It also demonstrates the use of external tools in PHPStorm - so it shouldn't be deleted.

The CodeSniffer can also be integrated easily as an external tool. PHPStorm will display the output in the console, including clickable links containing line and column numbers to the files that contain errors.

  • Click on "Settings" and search for "External tools"
  • Click "Add..."
  • Choose a "name", "Group" and "Description".
  • Click "Output Filters"
    • Click "Add...", Choose a name and enter under "Regular expression to match output" the value: $FILE_PATH$:$LINE$:$COLUMN$
  • "Program": Search for the phpcs executable on your system. You have to set the path to the phpcs.bat from the installed PHP_CodeSniffer PEAR package
    • for Unix based systems the path is something like /usr/bin/phpcs
    • in XAMPP (windows) you can find the file in the php root folder (e.g. C:\xampp\php\phpcs.bat)
  • "Paramaters":
    • --standard=<path/to/joomla-platform>/build/phpcs/Joomla The path to the Joomla! coding standards.
    • --report=emacs The will generate a simple list containing links to the error files
    • Optional you may want to specify -p for "progress" or -n for "errors only".
    • The last parameter has to be $FilePath$ specifying the file or folder you want to sniff.

A typical "Parameters" line on a Linux system might look like this:

-np --standard=/home/elkuku/libs/joomla/build/phpcs/Joomla --report=emacs $FilePath$

You may now right click any file or folder and choose the sniffer from the context menu or add a new toolbar button with a nice Joomla! logo Icon-16-joomla.png.

References[edit]