Skip to content

Instantly share code, notes, and snippets.

@torniker
Last active January 30, 2016 20:03
Show Gist options
  • Save torniker/b9181216304a85574885 to your computer and use it in GitHub Desktop.
Save torniker/b9181216304a85574885 to your computer and use it in GitHub Desktop.
{
"codeformatter_php_options": {
"syntaxes": "php", // Syntax names which must process PHP formatter
"php_path": "/usr/local/bin/php", // Path for PHP executable, e.g. "/usr/lib/php" or "C:/Program Files/PHP/php.exe". If empty, uses command "php" from system environments
"format_on_save": true, // Format on save
"psr1": false, // Activate PSR1 style
"psr1_naming": false, // Activate PSR1 style - Section 3 and 4.3 - Class and method names case
"psr2": true, // Activate PSR2 style
"indent_with_space": 4, // Use spaces instead of tabs for indentation
"enable_auto_align": false, // Enable auto align of = and =>
"visibility_order": true, // Fixes visibiliy order for method in classes - PSR-2 4.2
"smart_linebreak_after_curly": true, // Convert multistatement blocks into multiline blocks
// Enable specific transnformations. Example: ["ConvertOpenTagWithEcho", "PrettyPrintDocBlocks"]
// You can list all available transnformations from command palette: CodeFormatter: Show PHP Transformations
"passes": ["ReindentSwitchBlocks", "OrderAndRemoveUseClauses", "StripSpaceWithinControlStructures", "ShortArray", "SpaceBetweenMethods", "AutoSemicolon"],
// Disable specific transnformations
"exclude": []
},
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment