mirror of
https://gh.wpcy.net/https://github.com/totake0224/LINEIntegration.git
synced 2026-07-17 07:48:37 +08:00
25 lines
916 B
XML
25 lines
916 B
XML
<?xml version="1.0"?>
|
|
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
name="PHP_CodeSniffer"
|
|
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
|
|
<description>The coding standard for line-bot-sdk-php.</description>
|
|
|
|
<file>src/constants</file>
|
|
<file>src/laravel</file>
|
|
<file>src/parser</file>
|
|
<file>examples/EchoBot/src</file>
|
|
<file>examples/EchoBot/public</file>
|
|
<file>examples/KitchenSink/src</file>
|
|
<file>examples/KitchenSink/public</file>
|
|
|
|
<arg name="basepath" value="."/>
|
|
<arg name="colors"/>
|
|
<arg name="parallel" value="75"/>
|
|
<arg value="np"/>
|
|
|
|
<!-- Use PSR-12 Standard: https://www.php-fig.org/psr/psr-12/ -->
|
|
<rule ref="PSR12">
|
|
<!-- TODO: Enable this rule once we require PHP version >= 7.1 -->
|
|
<exclude name="PSR12.Properties.ConstantVisibility.NotFound"/>
|
|
</rule>
|
|
</ruleset>
|