-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OXDEV-7222 Add php_cs check to GHA build.yml
- Loading branch information
Daniil Tkachev
committed
Aug 16, 2023
1 parent
2506ee2
commit fbadad8
Showing
3 changed files
with
113 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer" xsi:noNamespaceSchemaLocation="phpcs.xsd"> | ||
<description>The coding standard for PHP_CodeSniffer itself.</description> | ||
<file>source</file> | ||
<exclude-pattern>*source/Application/views/.*$</exclude-pattern> | ||
<exclude-pattern>*source/tmp/.*$</exclude-pattern> | ||
<arg name="colors"/> | ||
<arg value="p"/> | ||
<arg value="n"/> | ||
<arg name="parallel" value="75"/> | ||
<arg name="extensions" value="php"/> | ||
<rule ref="PSR12"/> | ||
</ruleset> |