akalongman / akalongman/sublimetext-codeformatter

Brackets seems to have problems

Open
#373 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
772
Forks
128
PR merge metrics
No merged PRs in 30d

Description

Before:
![image](https://user-images.githubusercontent.com/4414580/43433044-42313c9c-94a8-11e8-80af-62fcab23e6ce.png)

After:
![image](https://user-images.githubusercontent.com/4414580/43433061-51b42120-94a8-11e8-8011-36fed79f0953.png)

This style doesn't seem to be correct?

It's my setting:
````
{
"codeformatter_php_options":
{
"syntaxes": "php", // Syntax names which must process PHP formatter
"php_path": "C:\\xampp\\php\\php.exe", // 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": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"php55_compat": false, // PHP 5.5 compatible mode
"psr1": true, // 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": true, // Enable auto align of = and =>
"visibility_order": true, // Fixes visibility order for method in classes - PSR-2 4.2
"smart_linebreak_after_curly": true, // Convert multistatement blocks into multiline blocks

// Enable specific transformations. Example: ["ConvertOpenTagWithEcho", "PrettyPrintDocBlocks"]
// You can list all available transformations from command palette: CodeFormatter: Show PHP Transformations
"passes": ["AllmanStyleBraces",
"MergeNamespaceWithOpenTag", "NoSpaceAfterPHPDocBlocks",
"PrettyPrintDocBlocks", "ReindentAndAlignObjOps",
"ReindentSwitchBlocks", "RemoveIncludeParentheses",
"SmartLnAfterCurlyOpen", "SpaceBetweenMethods",
"StripNewlineAfterCurlyOpen", "StripSpaceWithinControlStructures",
"PSR2EmptyFunction", "AlignEquals", "ShortArray",
"StripNewlineAfterClassOpen"
],

// Disable specific transformations
"excludes": []
},
}
````

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.