2013-10-27 17:50:58 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<ruleset name="phpBB Minimum Standard">
|
|
|
|
|
|
|
|
<description>phpBB minimum coding standard</description>
|
|
|
|
|
|
|
|
<!-- All code files MUST use only UTF-8 without BOM. -->
|
|
|
|
<rule ref="Generic.Files.ByteOrderMark" />
|
|
|
|
|
|
|
|
<!-- All code files MUST use the Unix LF (linefeed) line ending. -->
|
|
|
|
<rule ref="Generic.Files.LineEndings" />
|
|
|
|
|
2013-10-30 01:15:57 +01:00
|
|
|
<!-- Tabs MUST be used for indentation -->
|
|
|
|
<rule ref="Generic.WhiteSpace.DisallowSpaceIndent" />
|
|
|
|
|
2015-05-14 13:32:25 +02:00
|
|
|
<!-- ALL braces MUST be on their own lines. -->
|
2015-05-14 13:22:02 +02:00
|
|
|
<rule ref="./phpbb/Sniffs/ControlStructures/OpeningBraceBsdAllmanSniff.php" />
|
|
|
|
|
2013-10-27 17:50:58 +01:00
|
|
|
</ruleset>
|