Skip to content

Commit 6ea23ba

Browse files
release: 1.2.55
1 parent ec4dbe2 commit 6ea23ba

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
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.55
2+
3+
- Upgrade fmt.stub.php [(V1059.0.0)](https://github.com/driade/phpfmt8/releases/tag/v1059.0.0)
4+
15
### 1.2.54
26

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

package.json

Lines changed: 1 addition & 1 deletion
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.54",
4+
"version": "1.2.55",
55
"description": "Integrates phpfmt into VS Code",
66
"main": "./dist/extension",
77
"scripts": {

src/meta.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// Meta info
55
export const publisher = "kokororin"
66
export const name = "vscode-phpfmt"
7-
export const version = "1.2.52"
7+
export const version = "1.2.54"
88
export const displayName = "phpfmt - PHP formatter"
99
export const description = "Integrates phpfmt into VS Code"
1010
export const extensionId = `${publisher}.${name}`
@@ -285,12 +285,12 @@ export const configs = {
285285
/**
286286
* call specific compiler pass
287287
* @key `phpfmt.passes`
288-
* @default `["AlignDoubleArrow","AlignPHPCode","SpaceAfterExclamationMark","AlignConstVisibilityEquals","AutoSemicolon","ConvertOpenTagWithEcho","AlignEquals","MergeNamespaceWithOpenTag","RemoveSemicolonAfterCurly","RestoreComments","ShortArray","ExtraCommaInArray","AlignDoubleSlashComments"]`
288+
* @default `["AlignDoubleArrow","AlignPHPCode","SpaceAfterExclamationMark","AlignConstVisibilityEquals","AutoSemicolon","ConvertOpenTagWithEcho","AlignEquals","MergeNamespaceWithOpenTag","RemoveSemicolonAfterCurly","RestoreComments","ShortArray","ExtraCommaInArray","AlignDoubleSlashComments","IndentTernaryConditions","IndentPipeOperator"]`
289289
* @type `array`
290290
*/
291291
passes: {
292292
key: "phpfmt.passes",
293-
default: ["AlignDoubleArrow","AlignPHPCode","SpaceAfterExclamationMark","AlignConstVisibilityEquals","AutoSemicolon","ConvertOpenTagWithEcho","AlignEquals","MergeNamespaceWithOpenTag","RemoveSemicolonAfterCurly","RestoreComments","ShortArray","ExtraCommaInArray","AlignDoubleSlashComments"],
293+
default: ["AlignDoubleArrow","AlignPHPCode","SpaceAfterExclamationMark","AlignConstVisibilityEquals","AutoSemicolon","ConvertOpenTagWithEcho","AlignEquals","MergeNamespaceWithOpenTag","RemoveSemicolonAfterCurly","RestoreComments","ShortArray","ExtraCommaInArray","AlignDoubleSlashComments","IndentTernaryConditions","IndentPipeOperator"],
294294
} as ConfigItem<"phpfmt.passes">,
295295
/**
296296
* disable specific passes
@@ -378,7 +378,7 @@ export const scopedConfigs = {
378378
"enable_auto_align": false,
379379
"visibility_order": false,
380380
"ignore": [],
381-
"passes": ["AlignDoubleArrow","AlignPHPCode","SpaceAfterExclamationMark","AlignConstVisibilityEquals","AutoSemicolon","ConvertOpenTagWithEcho","AlignEquals","MergeNamespaceWithOpenTag","RemoveSemicolonAfterCurly","RestoreComments","ShortArray","ExtraCommaInArray","AlignDoubleSlashComments"],
381+
"passes": ["AlignDoubleArrow","AlignPHPCode","SpaceAfterExclamationMark","AlignConstVisibilityEquals","AutoSemicolon","ConvertOpenTagWithEcho","AlignEquals","MergeNamespaceWithOpenTag","RemoveSemicolonAfterCurly","RestoreComments","ShortArray","ExtraCommaInArray","AlignDoubleSlashComments","IndentTernaryConditions","IndentPipeOperator"],
382382
"exclude": [],
383383
"smart_linebreak_after_curly": false,
384384
"yoda": false,

0 commit comments

Comments
 (0)