-
-
Save veekthoven/498cc6bc64c14bc48d609dee3681f0da to your computer and use it in GitHub Desktop.
Sublime text disable phpcs in a project
This file contains 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
{ | |
"folders": | |
[ | |
{ | |
"path": "project/path/here" | |
} | |
], | |
"settings": { | |
"phpcs": { | |
"phpcs_execute_on_save": false, | |
"phpcs_show_errors_on_save": false, | |
"phpcs_command_on_save": false, | |
"phpmd_command_on_save": false, | |
"phpcs_sniffer_run": false | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment