-
Notifications
You must be signed in to change notification settings - Fork 9
/
.codeclimate.yml
58 lines (58 loc) · 1 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
57
58
---
engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
csslint:
enabled: false
coffeelint:
enabled: false
duplication:
enabled: true
config:
languages:
- ruby
eslint:
enabled: false
fixme:
enabled: true
rubocop:
enabled: true
channel: rubocop-1-10-0
checks:
Rubocop/Metrics/ClassLength:
enabled: false
Rubocop/Metrics/LineLength:
enabled: false
Rubocop/Style/Documentation:
enabled: false
Rubocop/Style/Encoding:
enabled: false
Rubocop/Style/FrozenStringLiteralComment:
enabled: false
Rubocop/Style/StringLiterals:
enabled: false
Rubocop/Style/BlockComments:
enabled: false
Rubocop/Style/Alias:
enabled: false
languages:
Ruby: true
JavaScript: false
PHP: false
Python: false
ratings:
paths:
- Gemfile.lock
- "**.rb"
exclude_paths:
- bower_components/
- config/
- db/
- doc/
- log/
- public/
- script/
- spec/
- tmp/