aboutsummaryrefslogtreecommitdiffstats
path: root/build/code_sniffer/ruleset-minimum.xml
blob: 33d01773907b9788eb4b2760f3d8ab72ee2634c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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" />

 <!-- Tabs MUST be used for indentation -->
 <rule ref="Generic.WhiteSpace.DisallowSpaceIndent" />

</ruleset>