SublimeLinter-phpmd
SublimeLinter plugin for php, using phpmd.
Details
Installs
- Total 22K
- Win 12K
- Mac 6K
- Linux 5K
May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 2 | 2 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 2 | 4 | 1 | 1 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 2 | 1 | 1 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
SublimeLinter-phpmd
This linter plugin for SublimeLinter provides an interface to phpmd. It will be used with files that have the “PHP”, “HTML” and “HTML5” syntax.
Installation
Install SublimeLinter
and SublimeLinter-phpmd
Make sure Package Control is installed.
- Open the command palette (Ctrl + Shift + P)
- Type Package Control: Install Package and select it.
- Type SublimeLinter and select it.
- Repeat steps 1-3 typing SublimeLinter-phpmd in step 3.
Install phpmd
Choose one of the installation methods below.
A local install allows you to fine-tune phpmd
on a per-project basis. A global install is available system-wide.
local install with Composer
On a command line inside your project:
composer require phpmd/phpmd
Inside Sublime, go to Preferences -> Package Settings -> SublimeLinter -> Settings.
Set the phpmd
executable by adding/editing:
"linters": {
"phpmd": {
"executable": "${folder}/vendor/bin/phpmd"
}
}
global install with Composer
composer global require phpmd/phpmd
Make sure the composer global bin directory is available in $PATH:
export PATH=~/.composer/vendor/bin:$PATH
global install with PEAR
pear channel-discover pear.phpmd.org
pear channel-discover pear.pdepend.org
pear install --alldeps phpmd/PHP_PMD
Settings
- SublimeLinter settings: http://sublimelinter.com/en/latest/settings.html
- Linter settings: http://sublimelinter.com/en/latest/linter_settings.html