Skip to content

Commit 1d15d24

Browse files
author
Dan Wallis
authored
Avoid breaking XML files (#12)
1 parent 2355959 commit 1d15d24

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 2.2.2
8+
### Fixed
9+
- Avoid breaking XML files by excluding `PSR12.Operators.OperatorSpacing` from running there.
10+
711
## 2.2.1
8-
## Fixed
12+
### Fixed
913
- Exclude pattern, the patterns did not include the dot of the extension allowing matching with the pathname (which for example in DDEV will match with `html` in `/var/www/html`)
10-
## Changed
14+
### Changed
1115
- Included more rules to exclude for (p)html and xml files. Indentation, line-length are very hard to fix consistently and prevents usage of component libraries (as for example with Hyvä)
1216

1317
## 2.2.0
14-
## Changed
18+
### Changed
1519
- Apply more rules to .html and .phtml files. In previous updates (see pull requests [#5] and [#10]), we excluded these files very widely; this change makes the exclusion more specific and intentional.
1620

1721
[#5]: https://github.com/YouweGit/coding-standard-magento2/pull/5

src/YouweMagento2/ruleset.xml

+3
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,7 @@
8484
<rule ref="Squiz.Commenting.VariableComment"><exclude-pattern>\.(x|p?ht)ml$</exclude-pattern></rule>
8585
<rule ref="Squiz.WhiteSpace.ControlStructureSpacing"><exclude-pattern>\.(x|p?ht)ml$</exclude-pattern></rule>
8686
<rule ref="Squiz.WhiteSpace.FunctionSpacing"><exclude-pattern>\.(x|p?ht)ml$</exclude-pattern></rule>
87+
88+
<!-- Excluding this for the same reasons as above, but only for XML files -->
89+
<rule ref="PSR12.Operators.OperatorSpacing"><exclude-pattern>\.xml$</exclude-pattern></rule>
8790
</ruleset>

0 commit comments

Comments
 (0)