-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.rubocop.yml
73 lines (58 loc) · 2.07 KB
/
.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
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
63
64
65
66
67
68
69
70
71
72
73
inherit_from: .rubocop_todo.yml
Rails:
Enabled: true
AllCops:
TargetRubyVersion: 2.5
Exclude:
- Gemfile*
- script/**/*
- bin/**/*
- app/admin/*
- db/schema.rb
- db/migrate/*
- spec/rails_helper.rb
# - node_modules/**/*
########################################################################################################################
### DISABLED Rubocop Rules below
########################################################################################################################
Metrics/LineLength:
Description: 'Limit lines to 80 characters.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#80-character-limits'
Enabled: false
# Offense count: 35
Style/AsciiComments:
Enabled: false
# Offense count: 122
Style/Documentation:
Enabled: false
# Offense count: 30
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: nested, compact
Style/ClassAndModuleChildren:
Enabled: false
Metrics/MethodLength:
Description: 'Avoid methods longer than 30 lines of code.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#short-methods'
Enabled: true
Max: 30
Lint/ScriptPermission:
Description: 'Grant script file execute permission.'
Enabled: false
########################################################################################################################
# CODE QUALTIY Enforcement - Do not change this - but update your code to pass
########################################################################################################################
Metrics/ClassLength:
Max: 120
CountComments: false
Metrics/AbcSize:
Max: 25
########################################################################################################################
# Allowed Exclusions below - won't fix
########################################################################################################################
# Offense count: 22
# Configuration parameters: CountComments, ExcludedMethods.
Metrics/BlockLength:
Max: 50
Exclude:
- 'config/routes.rb'
- 'spec/**/*'