forked from wp-bootstrap/wp-bootstrap-navwalker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.codeclimate.yml
More file actions
39 lines (39 loc) · 779 Bytes
/
.codeclimate.yml
File metadata and controls
39 lines (39 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
version: "2"
plugins:
duplication:
enabled: true
config:
languages:
- php
fixme:
enabled: true
markdownlint:
enabled: true
phpcodesniffer:
enabled: true
config:
file_extensions: "php"
standard: "WordPress-Docs,WordPress-Extra"
phpmd:
enabled: true
checks:
Controversial/CamelCaseMethodName:
enabled: false
Controversial/CamelCaseParameterName:
enabled: false
Controversial/CamelCasePropertyName:
enabled: false
Controversial/CamelCaseVariableName:
enabled: false
CleanCode/ElseExpression:
enabled: false
shellcheck:
enabled: true
exclude_patterns:
- "**.dist"
- "**.lock"
- "**.json"
- "**.txt"
- "tests/*"
- "vendor/**"