forked from upserv-io/foundations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
33 lines (25 loc) · 825 Bytes
/
.rubocop.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
inherit_from:
- https://raw.githubusercontent.com/clarkology56/.dotfiles/master/default_rubocop_config.yml
inherit_mode:
merge:
- Exclude
Layout/LineLength:
Exclude:
- "lib/upserv_foundations.rb"
- "lib/upserv_foundations/helpers/components/**/*.rb"
Metrics/AbcSize:
Exclude:
- "lib/upserv_foundations/helpers/components/**/*.rb"
Metrics/CyclomaticComplexity:
Exclude:
- "lib/upserv_foundations/helpers/components/**/*.rb"
Metrics/MethodLength:
Exclude:
- "lib/upserv_foundations/helpers/components/**/*.rb"
- "lib/generators/upserv_foundations/javascript_generator.rb"
Metrics/PerceivedComplexity:
Exclude:
- "lib/upserv_foundations/helpers/components/**/*.rb"
Style/IfUnlessModifier:
Exclude:
- "lib/upserv_foundations/helpers/components/**/*.rb"