mirror of
https://github.com/TheAlgorithms/PHP.git
synced 2025-01-16 14:48:32 +01:00
16 lines
439 B
XML
16 lines
439 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
|
|
|
|
<arg name="extensions" value="php"/>
|
|
<rule ref="PSR12"/>
|
|
|
|
<file>.</file>
|
|
|
|
<exclude-pattern>vendor</exclude-pattern>
|
|
|
|
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
|
|
<severity>0</severity>
|
|
</rule>
|
|
</ruleset>
|