mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-19 07:08:09 +01:00
3944efe528
PHPBB3-11980
16 lines
449 B
XML
16 lines
449 B
XML
<?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>
|