phpcs.xml 509 B

1234567891011121314151617
  1. <?xml version="1.0"?>
  2. <ruleset name="HestiaCP">
  3. <file>./web/src/app</file>
  4. <exclude-pattern>*.js</exclude-pattern>
  5. <!-- This is the rule we inherit from. If you want to exlude some specific rules, see the docs on how to do that -->
  6. <rule ref="PSR12"/>
  7. <!-- Lines can be a bit longer before they break the build -->
  8. <rule ref="Generic.Files.LineLength">
  9. <properties>
  10. <property name="lineLimit" value="120"/>
  11. <property name="absoluteLineLimit" value="150"/>
  12. </properties>
  13. </rule>
  14. </ruleset>