mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-19 04:59:27 +00:00
d9aa24cced
- Removed tests/codeception/ directory - Changed tests/codesniffer/FHComplete/ruleset.xml - Removed tests/codesniffer/FHComplete/Sniffs - Removed tests/codesniffer/FHComplete/tests - Added tests/phpmd/rulesets.xml
20 lines
819 B
XML
20 lines
819 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="Strictly necessary PHPMD rule set"
|
|
xmlns="http://pmd.sf.net/ruleset/1.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
|
|
xsi:noNamespaceSchemaLocation=" http://pmd.sf.net/ruleset_xml_schema.xsd">
|
|
|
|
<description>
|
|
Performs the strictly necessary checks before the code can be merged into the main branch and then deployed to production
|
|
</description>
|
|
|
|
<!-- Import the entire clean code rule set -->
|
|
<rule ref="rulesets/cleancode.xml" />
|
|
<!-- Import the entire unused code rule set -->
|
|
<rule ref="rulesets/unusedcode.xml" />
|
|
<!-- Import the DevelopmentCodeFragment rule from the design rule set -->
|
|
<rule ref="rulesets/design.xml/DevelopmentCodeFragment" />
|
|
</ruleset>
|
|
|