forked from decko-commons/decko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.codeclimate.yml
More file actions
42 lines (42 loc) · 915 Bytes
/
.codeclimate.yml
File metadata and controls
42 lines (42 loc) · 915 Bytes
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
languages:
Ruby: true
JavaScript: true
PHP: false
Python: false
plugins:
rubocop:
enabled: true
config:
file: .codeclimate-rubocop.yml
channel: rubocop-1-56-3
checks:
Rubocop/Style/SpaceInsideStringInterpolation:
enabled: false
Rubocop/Gemspec/RequiredRubyVersion: # handled by DeckoGem
enabled: false
Rubocop/Style/FetchEnvVar:
enabled: false
golint:
enabled: false
gofmt:
enabled: false
eslint:
enabled: true
csslint:
enabled: true
ratings:
paths:
- "card/{lib,mod}/**"
- "decko/{lib,rails}/**"
- "mod/**"
- "**.rb"
exclude_paths:
- "decko/rails/assets/**/*"
- "decko/spec/**/*.js"
- "doc/**/*"
- "coverage/**/*"
- "mod/*/{lib,assets}/{style,stylesheets}/**/*.css"
- "mod/*/{lib,assets}/{script,javascript}/**/*.js"
- "mod/*/{data,public,vendor}/**/*"
- "card/mod/core/data/**/*"
- "decko/Guardfile"