forked from 18F/identity-idp
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.codeclimate.yml
52 lines (51 loc) · 888 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
coffeelint:
enabled: true
csslint:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
javascript:
mass_threshold: 50
exclude_paths:
- 'spec/**/*'
- 'node_modules/**/*'
- 'db/schema.rb'
eslint:
enabled: true
fixme:
enabled: true
exclude_paths:
- 'public/build/bundle.js'
- '.codeclimate.yml'
config:
strings:
# Removed TODO from this list, as we want to allow TODOs in the codebase
- FIXME
- HACK
- BUG
- XXX
reek:
enabled: true
exclude_paths:
- 'spec/**/*'
- 'db/migrate/*'
rubocop:
enabled: true
scss-lint:
enabled: true
ratings:
paths:
- app/**
- lib/**
- '**.rb'
- '**.go'
exclude_paths:
- 'lib/rspec/formatters/*'