brandon14/fossabot-commander

View on GitHub
phpcs.xml.dist

Summary

Maintainability
Test Coverage
<?xml version="1.0"?>
<ruleset name="brandon14/fossabot-commander Standard" namespace="App\CS\Standard">
  <description>The phpcs coding standard for the brandon14/fossabot-commander project.</description>

  <!-- Only process .php files. -->
  <arg name="extensions" value="php" />
  <!-- Show all errors. -->
  <arg name="error-severity" value="1" />
  <!-- Hide warnings. -->
  <arg name="warning-severity" value="0" />
  <arg name="colors" />
  <arg value="sp" />

  <!-- Ignore vendor folder. -->
  <exclude-pattern>vendor</exclude-pattern>
  <!-- Exclude tests -->
  <exclude-pattern>tests</exclude-pattern>

  <rule ref="PSR2" />

</ruleset>