Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Setting up VSCode: Difference between revisions

From MoodleDocs
No edit summary
No edit summary
Line 17: Line 17:
https://github.com/squizlabs/PHP_CodeSniffer/blob/master/src/Sniffs/Sniff.php
https://github.com/squizlabs/PHP_CodeSniffer/blob/master/src/Sniffs/Sniff.php
(or https://github.com/moodlehq/moodle-local_codechecker)
(or https://github.com/moodlehq/moodle-local_codechecker)
This plugin will show a wavy red line under code that does not conform.
This plugin will show a wavy red line under code that does not conform.
https://github.com/wongjn/vscode-php-sniffer
https://github.com/wongjn/vscode-php-sniffer


[[File:sniff.jpg|thumb]]
[[File:sniff.png]]


== Run phpunit tests from within IDE (plugin) ==
== Run phpunit tests from within IDE (plugin) ==

Revision as of 21:19, 4 August 2020

https://en.wikipedia.org/wiki/Visual_Studio_Code

VSCode is a an Integrated Development Environment from Microsoft available under the MIT License. It works on Linux/Windows/OSX. It has a large number of plugins available, most entirely free/libre. It has good support for Xdebug.

Moodle specific Snippets and autocomplete (plugin)

https://marketplace.visualstudio.com/items?itemName=MateuszLesiak.vscode-moodle-snippets

Offers some useful Moodle specific code completion popups.

Code Formatting (indentation)

https://marketplace.visualstudio.com/items?itemName=kokororin.vscode-phpfmt

Show coding standards issues (plugin)

If you have Code Sniffer set up https://github.com/squizlabs/PHP_CodeSniffer/blob/master/src/Sniffs/Sniff.php (or https://github.com/moodlehq/moodle-local_codechecker)

This plugin will show a wavy red line under code that does not conform. https://github.com/wongjn/vscode-php-sniffer

sniff.png

Run phpunit tests from within IDE (plugin)

https://marketplace.visualstudio.com/items?itemName=danilopolani.yet-another-phpunit

A file of unit tests or individual test can be run from within the IDE

Generate PHP Doc blocks

Type /** at the top of the function and it grabs the parameters, including types if given and creates a PHPDoc block

https://marketplace.visualstudio.com/items?itemName=neilbrayfield.php-docblocker

Auto trim trailing white space

To ensure trailing white space is trimmed do the following

Open VS User Settings (Preferences > Settings > User Settings tab). Click the {} icon in the top-right part of the window. This will open a document.

Add a new "files.trimTrailingWhitespace": true setting to the User Settings document if it's not already there. This is so you aren't editing the Default Setting directly, but instead adding to it.

Save the User Settings file.