Skip to content

Commit

Permalink
Enhancement: Configure no_trailing_comma_in_singleline fixer to inclu…
Browse files Browse the repository at this point in the history
…de group_import
  • Loading branch information
localheinz committed Sep 29, 2022
1 parent 4d18200 commit b5140f5
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 2 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

For a full diff see [`4.8.0...main`][4.8.0...main].
For a full diff see [`4.9.0...main`][4.9.0...main].

## [`4.9.0`][4.9.0]

For a full diff see [`4.8.0...4.9.0`][4.7.0...4.9.0].

### Changed

- Configured `no_trailing_comma_in_singleline` fixer to include `group_import` ([#655]), by [@dependabot]

## [`4.8.0`][4.8.0]

Expand Down Expand Up @@ -603,7 +611,8 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[4.5.3...4.6.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/4.5.3...4.6.0
[4.6.0...4.7.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/4.6.0...4.7.0
[4.7.0...4.8.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/4.7.0...4.8.0
[4.8.0...main]: https://github.com/ergebnis/php-cs-fixer-config/compare/4.8.0...main
[4.8.0...4.9.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/4.8.0...4.9.0
[4.9.0...main]: https://github.com/ergebnis/php-cs-fixer-config/compare/4.9.0...main

[#3]: https://github.com/ergebnis/php-cs-fixer-config/pull/3
[#14]: https://github.com/ergebnis/php-cs-fixer-config/pull/14
Expand Down Expand Up @@ -743,6 +752,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[#645]: https://github.com/ergebnis/php-cs-fixer-config/pull/645
[#646]: https://github.com/ergebnis/php-cs-fixer-config/pull/646
[#651]: https://github.com/ergebnis/php-cs-fixer-config/pull/651
[#655]: https://github.com/ergebnis/php-cs-fixer-config/pull/655

[@dependabot]: https://github.com/apps/dependabot
[@linuxjuggler]: https://github.com/linuxjuggler
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php74.php
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'arguments',
'array',
'array_destructuring',
'group_import',
],
],
'no_trailing_whitespace' => true,
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php80.php
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'arguments',
'array',
'array_destructuring',
'group_import',
],
],
'no_trailing_whitespace' => true,
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php81.php
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'arguments',
'array',
'array_destructuring',
'group_import',
],
],
'no_trailing_whitespace' => true,
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php74Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'arguments',
'array',
'array_destructuring',
'group_import',
],
],
'no_trailing_whitespace' => true,
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php80Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'arguments',
'array',
'array_destructuring',
'group_import',
],
],
'no_trailing_whitespace' => true,
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php81Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'arguments',
'array',
'array_destructuring',
'group_import',
],
],
'no_trailing_whitespace' => true,
Expand Down

0 comments on commit b5140f5

Please sign in to comment.