Skip to content

Commit 31364e0

Browse files
committed
qa: require codestandard and allow some exceptions
Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com>
1 parent 8fd1b47 commit 31364e0

File tree

3 files changed

+119
-1
lines changed

3 files changed

+119
-1
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"require-dev": {
3434
"laminas-api-tools/api-tools-admin": "^1.6",
3535
"laminas-api-tools/api-tools-asset-manager": "^1.2",
36+
"laminas/laminas-coding-standard": "~1.0.0",
3637
"laminas/laminas-composer-autoloading": "^2.1",
3738
"laminas/laminas-developer-tools": "^1.2.1",
3839
"laminas/laminas-test": "^3.4",

composer.lock

Lines changed: 113 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpcs.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
</rule>
2424
<rule ref="PSR1.Files.SideEffects">
2525
<exclude-pattern>public/index.php</exclude-pattern>
26+
<exclude-pattern>src/remove-package-artifacts.php</exclude-pattern>
27+
</rule>
28+
<rule ref="Generic.Files.LineLength.TooLong">
29+
<exclude-pattern>config/*</exclude-pattern>
30+
<exclude-pattern>*.phtml</exclude-pattern>
2631
</rule>
2732

2833
<!-- Paths to check -->

0 commit comments

Comments
 (0)