:octocat:

This commit is contained in:
smiley
2016-03-21 13:46:10 +01:00
parent 03e903d474
commit 3a4faaf092
2 changed files with 39 additions and 7 deletions
+5 -7
View File
@@ -1,16 +1,14 @@
engines:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: true
phpcodesniffer:
enabled: true
phpmd:
enabled: true
markdownlint:
config:
file_extensions: "php"
rulesets: "phpmd.xml"
I markdownlint:
enabled: true
ratings:
paths:
@@ -18,4 +16,4 @@ ratings:
exclude_paths:
- examples/**/*
- tests/**/*
- "**/vendor/**/*"
- "**/vendor/**/*"
+34
View File
@@ -0,0 +1,34 @@
<?xml version="1.0"?>
<ruleset name="codemasher/php-qrcode PMD ruleset"
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>codemasher/php-qrcode PMD ruleset</description>
<exclude-pattern>*/examples/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<rule ref="rulesets/cleancode.xml">
<exclude name="BooleanArgumentFlag"/>
</rule>
<rule ref="rulesets/codesize.xml/CyclomaticComplexity">
<priority>1</priority>
<properties>
<property name="maximum" value="150" />
</properties>
</rule>
<rule ref="rulesets/controversial.xml">
<exclude name="CamelCaseMethodName"/>
<exclude name="CamelCasePropertyName"/>
<exclude name="CamelCaseParameterName"/>
<exclude name="CamelCaseVariableName"/>
</rule>
<rule ref="rulesets/design.xml">
</rule>
<rule ref="rulesets/naming.xml">
<exclude name="LongVariable"/>
<exclude name="ShortVariable"/>
</rule>
<rule ref="rulesets/unusedcode.xml">
<exclude name="UnusedFormalParameter"/>
</rule>
</ruleset>