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 6: Line 6:


Offers some useful Moodle specific code completion popups.
Offers some useful Moodle specific code completion popups.
== 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


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

Revision as of 10:46, 25 February 2020

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

Snippets and autocomplete completion (plugin)

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

Offers some useful Moodle specific code completion popups.

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

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

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.