Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 01c6ef7

Browse files
author
Kirill Fuchs
committed
added code climate and sensible phpmd rules
1 parent faf38d1 commit 01c6ef7

File tree

2 files changed

+73
-0
lines changed

2 files changed

+73
-0
lines changed

.codeclimate.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
engines:
2+
duplication:
3+
enabled: true
4+
config:
5+
languages:
6+
- ruby
7+
- javascript
8+
- python
9+
- php
10+
fixme:
11+
enabled: true
12+
phpmd:
13+
enabled: true
14+
checks:
15+
Controversial/CamelCaseVariableName:
16+
enabled: false
17+
Controversial/CamelCasePropertyName:
18+
enabled: false
19+
Controversial/CamelCaseMethodName:
20+
enabled: false
21+
Controversial/CamelCaseParameterName:
22+
enabled: false
23+
config:
24+
file_extensions: "php"
25+
rulesets: "unusedcode,codesize,phpmd.rulesets.xml"
26+
ratings:
27+
paths:
28+
- "**.inc"
29+
- "**.js"
30+
- "**.jsx"
31+
- "**.module"
32+
- "**.php"
33+
- "**.py"
34+
- "**.rb"
35+
exclude_paths:
36+
- tests/

phpmd.rulesets.xml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0"?>
2+
<ruleset name="PHPMD rule set for my project" xmlns="http://pmd.sf.net/ruleset/1.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd"
5+
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd">
6+
<description>Custom rules for checking my project</description>
7+
8+
<rule ref="rulesets/controversial.xml">
9+
<exclude name="CamelCaseVariableName"/>
10+
<exclude name="CamelCasePropertyName"/>
11+
<exclude name="CamelCaseMethodName"/>
12+
<exclude name="CamelCaseParameterName"/>
13+
</rule>
14+
15+
<rule ref="rulesets/naming.xml">
16+
<exclude name="ShortVariable"/>
17+
<exclude name="ShortMethodName"/>
18+
</rule>
19+
20+
<rule ref="rulesets/naming.xml/ShortVariable"
21+
since="0.2"
22+
message="Avoid variables with short names like {0}. Configured minimum length is {1}."
23+
class="PHPMD\Rule\Naming\ShortVariable"
24+
externalInfoUrl="http://phpmd.org/rules/naming.html#shortvariable">
25+
<priority>3</priority>
26+
<properties>
27+
<property name="minimum" description="Minimum length for a variable, property or parameter name" value="3"/>
28+
<property name="exceptions" value="is,in,or,id,q,i,j,v,e,f,fp" />
29+
</properties>
30+
</rule>
31+
32+
<rule ref="rulesets/naming.xml/ShortMethodName">
33+
<properties>
34+
<property name="exceptions" value="is,in,or" />
35+
</properties>
36+
</rule>
37+
</ruleset>

0 commit comments

Comments
 (0)