Created
November 1, 2019 13:06
-
-
Save mohsin/6b68b2d826c2dac4e803aceee9bd44c7 to your computer and use it in GitHub Desktop.
PHP-CS Sublime Text 3 Configuration
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
// SublimeLinter Settings - User | |
// Make sure to drop phpcs.xml at HOME directory. | |
{ | |
"linters": { | |
"phpcs": { | |
"args": "--standard='~/phpcs.xml'", | |
"styles": [ | |
{ | |
"icon": "circle" | |
} | |
] | |
} | |
}, | |
"paths": { | |
"linux": [], | |
"osx": [ | |
"~/.composer/vendor/bin" | |
], | |
"windows": [] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment