Skip to content

Commit ec4dbe2

Browse files
release: 1.2.54
1 parent de355f1 commit ec4dbe2

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.2.54
2+
3+
- Upgrade fmt.stub.php [(V1058.0.0)](https://github.com/driade/phpfmt8/releases/tag/v1058.0.0)
4+
15
### 1.2.53
26

37
- Upgrade fmt.stub.php [(V1054.0.0)](https://github.com/driade/phpfmt8/releases/tag/v1054.0.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ A: We now use `fmt.stub.php` from driade's [phpfmt8](https://github.com/driade/p
9191
| phpfmt.enable_auto_align | `boolean` | enable auto align of ST_EQUAL and T_DOUBLE_ARROW | false |
9292
| phpfmt.visibility_order | `boolean` | fixes visibiliy order for method in classes - PSR-2 4.2 | false |
9393
| phpfmt.ignore | `array` | ignore file names whose names contain any pattern that could be matched with `.match` JS string method | [] |
94-
| phpfmt.passes | `array` | call specific compiler pass | ["AlignDoubleArrow","AlignPHPCode","SpaceAfterExclamationMark","AlignConstVisibilityEquals","AutoSemicolon","ConvertOpenTagWithEcho","AlignEquals","MergeNamespaceWithOpenTag","RemoveSemicolonAfterCurly","RestoreComments","ShortArray","ExtraCommaInArray","AlignDoubleSlashComments"] |
94+
| phpfmt.passes | `array` | call specific compiler pass | ["AlignDoubleArrow","AlignPHPCode","SpaceAfterExclamationMark","AlignConstVisibilityEquals","AutoSemicolon","ConvertOpenTagWithEcho","AlignEquals","MergeNamespaceWithOpenTag","RemoveSemicolonAfterCurly","RestoreComments","ShortArray","ExtraCommaInArray","AlignDoubleSlashComments","IndentTernaryConditions","IndentPipeOperator"] |
9595
| phpfmt.exclude | `array` | disable specific passes | [] |
9696
| phpfmt.smart_linebreak_after_curly | `boolean` | convert multistatement blocks into multiline blocks | false |
9797
| phpfmt.yoda | `boolean` | yoda-style comparisons | false |

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-phpfmt",
33
"displayName": "phpfmt - PHP formatter",
4-
"version": "1.2.52",
4+
"version": "1.2.54",
55
"description": "Integrates phpfmt into VS Code",
66
"main": "./dist/extension",
77
"scripts": {
@@ -189,7 +189,9 @@
189189
"RestoreComments",
190190
"ShortArray",
191191
"ExtraCommaInArray",
192-
"AlignDoubleSlashComments"
192+
"AlignDoubleSlashComments",
193+
"IndentTernaryConditions",
194+
"IndentPipeOperator"
193195
],
194196
"description": "call specific compiler pass",
195197
"items": {

0 commit comments

Comments
 (0)