Code-checker

General plugins (Local) ::: local_codechecker
Maintained by One poor developer...Eloy Lafuente (stronk7), TimTim Hunt, Víctor Déniz Falcón, Sara Arjona Téllez
Part of set Moodle development.
A tool for developers that helps them follow Moodle's coding style.

Code-checker 2.7.1 - Slowly yours

Moodle 2.7, 2.8, 2.9, 3.0, 3.1, 3.2, 3.3, 3.4
Released: Saturday, 20 January 2018, 11:51 AM

Moodle Code Checker

Build Status

Changes in version 2.7.1 (20180120) - Slowly yours

  • NOBUG: Bump to moodlerooms/moodle-plugin-ci v2. Apply to 32_STABLE and up in travis conf. Problems with behat forces us to keep it disabled.
  • PR#45: Upgrade PHPCompatibility to 7.1.5. (Mark Nielsen)
  • PR#41: Allow newline characters before or after object operators. (Ankit Agarwal)

Information

This Moodle plugin uses the Pear CodeSniffer library to check that code follows the Moodle coding guidelines, available @ http://docs.moodle.org/en/Development:Coding_style.

It was created by developers at the Open University, including Sam Marshall, Tim Hunt and Jenny Gray. It is now maintained by Moodle HQ.

Available releases can be downloaded and installed from https://moodle.org/plugins/view.php?plugin=local_codechecker.

To install it using git, type this command in the root of your Moodle install:

git clone git://github.com/moodlehq/moodle-local_codechecker.git local/codechecker

Then add /local/codechecker to your git ignore.

Alternatively, download the zip from https://github.com/moodlehq/moodle-local_codechecker/zipball/master, unzip it into the local folder, and then rename the new folder to "codechecker".

After you have installed this local plugin, you should see a new option in the settings block:

Site administration -> Development -> Code checker

We hope you find this tool useful. Please feel free to enhance it. Report any idea or bug @ https://tracker.moodle.org/browse/CONTRIB/component/12130, thanks!

IDE Integration

Eclipse:

  1. If if you use Eclipse for development, you might want to install the PHP CodeSniffer plugin (http://www.phpsrc.org/).
  2. Create a new "CodeSniffer standard" in the preferences page.
  3. Point it at the moodle directory inside the codechecker folder.
  4. Thank Michael Aherne from University of Strathclyde who worked this out!

PhpStorm

  1. Install the phpcs cli tool
  2. Open PhpStorm preferences
  3. Go to PHP > CodeSniffer and supply the path to the phpcs executable
  4. Go to Inspections > PHP > PHP Code Sniffer Validation
  5. In the 'coding standard' dropdown select 'custom' and press the [...] button next to the path to the coding standard. Point is at the moodle directory inside the this plugin directory.

Sublime Text

Find documentation here: https://docs.moodle.org/dev/Setting_up_Sublime2#Sublime_PHP_CS.
After step 3 in the Sublime PHP CS section: 1. Go in your Sublime Text to Preferences -> Package Control -> Package Control: Install Package 2. Write 'phpcs' in the search field, if you see Phpcs and SublimeLinter-phpcs, click on them to install them. 3. If not, check if they are already installed Preferences -> Package Control -> Package Control: Remove Package. 4. To set your codecheck to moodle standards go to Preferences -> Package Settings -> PHP Code Sniffer -> Settings-User and write:

               {   "phpcs_additional_args": {
                      "--standard": "moodle",
                       "-n": ""
                   },
               }
  1. If you don’t have the auto-save plugin turned on, YOU’RE DONE!
  2. If you have the auto-save plugin turned on, because the codecheck gets triggered on save, the quick panel will keep popping making it impossible to type. To stop quick panel from showing go to Settings-User file and add:
               "phpcs_show_quick_panel": false,

The line with the error will still get marked and if you’ll click on it you’ll see the error text in the status bar.

Version information

Version build number
2018012000
Version release name
2.7.1 - Slowly yours
Can be updated to
2.9.2 - Selectivenesses (2019011500), 2.9.3 (2019011800), 2.9.3 (2019011800), 2.9.3 (2019011800), 2.9.3 - Selectivenesses (take #2) (2019011800), 2.9.4 - Late Beorc (2019111200), 2.9.5 - Poisson d'avril (2020040100), 2.9.6 - June's Roentgenium (2020061100)
Maturity
Stable version
MD5 Sum
45f0011dc0cee6cab3269d3b469bd1ad
Supported software
Moodle 2.7, Moodle 2.8, Moodle 2.9, Moodle 3.0, Moodle 3.1, Moodle 3.2, Moodle 3.3, Moodle 3.4

Version control information

Version control system (VCS)
GIT
VCS repository URL
VCS tag
v2.7.1

Default installation instructions for plugins of the type General plugins (Local)

  1. Make sure you have all the required versions.
  2. Download and unpack the module.
  3. Place the folder in the "local" subdirectory.
  4. Visit http://yoursite.com/admin to finish the installation.