-
-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move PHPCS configuration to `phpcs.xml.dist` * Reenable `PSR1.Files.SideEffects` PHPCS sniff (that was excluded with a864ced but that seems no longer to be necessary) * Add scripts `test:behavioral:sync` and `test:behavioral:stop-on-failure:sync`
- Loading branch information
1 parent
7d7a44b
commit 48d989b
Showing
5 changed files
with
40 additions
and
15 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
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,15 @@ | ||
<?xml version="1.0" ?> | ||
<ruleset name="PSR12"> | ||
<description>The PSR12 coding standard – without line length limitation</description> | ||
|
||
<file>./Neos.ContentGraph.DoctrineDbalAdapter/src</file> | ||
<file>./Neos.ContentGraph.PostgreSQLAdapter/src</file> | ||
<file>./Neos.ContentRepository.BehavioralTests/Classes</file> | ||
<file>./Neos.ContentRepository.TestSuite/Classes</file> | ||
<file>./Neos.ContentRepository.Core/Classes</file> | ||
<file>./Neos.Neos/Classes</file> | ||
|
||
<rule ref="PSR12"> | ||
<exclude name="Generic.Files.LineLength.TooLong" /> | ||
</rule> | ||
</ruleset> |