Created
February 21, 2014 03:56
-
-
Save vitorpacheco/9128464 to your computer and use it in GitHub Desktop.
phpcs.sublime-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
Show hidden characters
| { | |
| "phpcs_additional_args": { | |
| "--standard": "PSR2", | |
| "-n": "" | |
| }, | |
| // Show outline for errors | |
| "phpcs_outline_for_errors": false, | |
| // Show the errors in the quick panel so you can then goto line | |
| "phpcs_show_quick_panel": false, | |
| // It seems python/sublime cannot always find the phpcs application | |
| // If empty, then use PATH version of phpcs, else use the set value | |
| "phpcs_executable_path": "C:\\php\\phpcs.bat", | |
| // Are we going to run php -l over the file? | |
| "phpcs_linter_run": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment