forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codeclimate.yml
62 lines (52 loc) · 1.05 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
59
60
61
62
---
engines:
duplication:
enabled: true
config:
languages:
javascript:
ruby:
mass_threshold: 100
fixme:
enabled: true
config:
strings:
- FIXME
- BUG
grep:
enabled: true
config:
patterns:
no-trailing-whitespace:
pattern: \s*$
annotation: "Don't leave trailing whitespace"
severity: minor
categories: Style
path_patterns:
- "**.arb"
- "**.coffee"
- "**.css"
- "**.erb"
- "**.es6"
- "**.feature"
- "**.gemfile"
- "**.gemspec"
- "**.html"
- "**.js"
- "**.md"
- "**.rake"
- "**.rb"
- "**.scss"
- "**.yml"
- ".*.yml"
markdownlint:
enabled: true
rubocop:
enabled: true
channel: rubocop-0-49
exclude_paths:
- "gemfiles/vendor/**/*"
- ".test-rails-apps/**/*"
- "spec/rails/**/*"
- "coverage/**/*"
- "vendor/**/*"