-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy path.codeclimate.yml
51 lines (51 loc) · 1.15 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
version: 2
# All maintainability checks are enabled by default, but can be disabled or tuned individually under the checks node. Example:
# checks:
# argument-count:
# enabled: true
# config:
# threshold: 4
plugins:
shellcheck:
enabled: true
brakeman:
enabled: true
rubocop:
enabled: true
channel: rubocop-1-39
reek:
enabled: true
eslint:
enabled: false
csslint:
enabled: false
coffeelint:
enabled: true
checks:
max_line_length:
enabled: false
bundler-audit:
enabled: true
scss-lint:
enabled: true
exclude_patterns:
- "**/node_modules/"
- "**/vendor/*"
- "app/assets/images/**/*"
- "app/javascript"
- "assets/bundles/*.js"
- "bin/webpack*"
- "lib/developer_portal/app/assets/stylesheets/**/*"
- "lib/developer_portal/app/views/developer_portal/css/*"
- "lib/developer_portal/app/views/developer_portal/javascripts/*"
- "public/assets"
- "public/dev-portal-assets/*"
- "public/fancybox/*"
- "public/images/**/*"
- "public/javascripts/vendor/*"
- "public/packs"
- "public/themes/**/*"
- "spec/**/*"
- "spec/**/**/*"
- "test/**/*"
- "tmp/**/*"