Created
July 7, 2016 16:03
-
-
Save alokstha1/aa12c2104347ce5eb46b5c1bc1288892 to your computer and use it in GitHub Desktop.
Install PHPCS with WordPress Coding Standard with Sublime Text 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. cmd+shift+p | |
2. Type phpcs and install it | |
3. Preferences > Package Settings > Php Code Sniffer > User settings |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"phpcs_executable_path" : "/usr/local/bin/phpcs", | |
"phpmd_executable_path" : "/usr/local/bin/phpmd", | |
"phpcs_additional_args": { | |
"--standard": "~/bin/ruleset.xml", | |
"-n": "" | |
}, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir ~/bin | |
cd ~/bin | |
# install phpcs and phpmd | |
git clone https://github.com/squizlabs/PHP_CodeSniffer.git phpcs | |
git clone git://github.com/phpmd/phpmd.git | |
# install composer into your bin folder | |
curl -s http://getcomposer.org/installer | php | |
# add composer, phpcs and phpmd to your path | |
sudo ln -s ~/bin/phpcs/scripts/phpcs /usr/local/bin/phpcs | |
sudo ln -s ~/bin/phpmd/src/bin/phpmd /usr/local/bin/phpmd | |
sudo ln -s ~/bin/composer.phar /usr/local/bin/composer | |
# configure phpmd | |
cd ~/bin/phpmd | |
composer install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#optional part to install wordpress coding standards | |
git clone https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git wpcs | |
# tell phpcs about the wordpress coding standards | |
cd ~/bin/phpcs | |
scripts/phpcs --config-set installed_paths ../wpcs | |
# we probably want to ignore the space indenting on the files | |
vim ~/bin/ruleset.xml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<ruleset name="Custom"> | |
<description>Wordpress, but without linelength check.</description> | |
<rule ref="WordPress"> | |
<exclude name="Generic.Files.LineLength"/> | |
<exclude name="Generic.WhiteSpace.ScopeIndent"/> | |
<exclude name="Generic.WhiteSpace.DisallowSpaceIndent"/> | |
<exclude name="Generic.WhiteSpace.DisallowTabIndent"/> | |
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeCloseParenthesis"/> | |
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterOpenParenthesis"/> | |
<exclude name="WordPress.Arrays.ArrayDeclaration"/> | |
<exclude name="WordPress.PHP.YodaConditions"/> | |
<exclude name="WordPress.XSS.EscapeOutput"/> | |
<exclude name="WordPress.Arrays.ArrayKeySpacingRestrictions"/> | |
<exclude name="WordPress.WhiteSpace.CastStructureSpacing"/> | |
<exclude name="PEAR.Functions.FunctionCallSignature.Indent"/> | |
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket"/> | |
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket"/> | |
</rule> | |
</ruleset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment