Skip to content

Instantly share code, notes, and snippets.

@w33ble
Created May 25, 2013 03:58
Show Gist options
  • Save w33ble/5647844 to your computer and use it in GitHub Desktop.
Save w33ble/5647844 to your computer and use it in GitHub Desktop.
phpcs user settings
{
// Plugin settings
// The path to the php executable.
// Needed for windows, or anyone who doesn't/can't make phars
// executable. Avoid setting this if at all possible
"php_cs_fixer_executable_path": "/usr/local/bin/php-cs-fixer",
// Execute the sniffer on file save
"phpcs_execute_on_save": true,
// Show the errors in the quick panel so you can then goto line
"phpcs_show_quick_panel": false,
// PHP_CodeSniffer settings
// Do you want to run the phpcs checker?
"phpcs_sniffer_run": false,
// Fix the issues on save
"phpcs_command_on_save": true
// PHP-CS-Fixer settings
// PHP Mess Detector settings
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment