-
Notifications
You must be signed in to change notification settings - Fork 11
/
.codeclimate.yml
38 lines (38 loc) · 1016 Bytes
/
.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
version: "2"
checks:
method-lines:
config:
threshold: 40
similar-code:
enabled: false
complex-logic:
config:
threshold: 10
method-complexity:
config:
threshold: 10
plugins:
tslint:
enabled: true
markdownlint:
enabled: false
csslint:
enabled: true
exclude_patterns:
# Backend File Specific Excludes
# Frontend Pattern Excludes
- "src/frontend/csrs-portal/karma.conf.js"
- "src/frontend/csrs-portal/package.json"
- "src/frontend/csrs-portal/tsconfig.json"
- "src/frontend/csrs-portal/tslint.json"
- "src/frontend/csrs-portal/**/*.spec.*"
- "src/frontend/csrs-portal/**/*.model.*"
- "src/frontend/csrs-portal/**/*.module.*"
- "src/frontend/csrs-portal/**/*.routes.*"
- "src/frontend/csrs-portal/**/abstract*.*"
- "src/frontend/csrs-portal/shared/components/"
- "src/frontend/*/src/*.spec.ts"
- "src/frontend/*/src/*/*/*.spec.ts"
- "src/frontend/*/src/*.component.ts"
- "src/frontend/*/src/*/*/*.component.ts"
- "src/infra/*"