1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 11:10:18 +02:00

[task/code-sniffer] Add code sniffer rulesets.

PHPBB3-11980
This commit is contained in:
Andreas Fischer
2013-10-27 17:50:58 +01:00
parent c230701e48
commit 8c83acb28b
3 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<?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" />
</ruleset>