-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.codeclimate.yml
56 lines (53 loc) · 1.17 KB
/
.codeclimate.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: "2" # required to adjust maintainability checks
plugins:
brakeman:
enabled: false
rubocop:
enabled: false
eslint:
enabled: false
similar-code:
enabled: false
exclude_patterns:
# Exclude Folder Pattern
- "**/.github/"
- "**/.docker/"
- "**/.vscode/"
- "**/devops/"
- "**/document-manager/"
- "**/documentation/"
- "**/infrastructure/"
- "**/mailhog/"
- "**/ngork/"
- "**/poc/"
- "**/prime-database-backup/"
- "**/prime-angular-frontend/node_modules/"
- "**/prime-dotnet-webapi/Migrations/"
- "**/prime-dotnet-webapi/Views/"
- "**/prime-dotnet-webapi/ViewModels/"
- "**/prime-dotnet-webapi/Resrouces/"
- "**/prime-dotnet-webapi/Configuration/"
- "**/prime-dotnet-webapi/logs/"
- "**/prime-dotnet-webapi-tests/"
- "**/prime-e2e-tests/"
- "**/schemasoy/"
- "**/utilities/"
- "**/config/"
- "**/db/"
- "**/dist/"
- "**/features/"
- "**/node_modules/"
- "**/script/"
- "**/spec/"
- "**/test/"
- "**/tests/"
- "**/Tests/"
- "**/vendor/"
# Exclude File Pattern
- "**/*_test.go"
- "**/*.d.ts"
- "**/*.spec.*"
- "**/*.json"
- "**/*.html"
- "**/*.cshtml"
- "**/*ViewModel.cs"