-
Notifications
You must be signed in to change notification settings - Fork 0
/
.rubocop.yml
21 lines (20 loc) · 1.05 KB
/
.rubocop.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
AllCops:
Exclude:
# Bin contains standard files created when gem is initialised and therefore they should be left as is
- 'bin/**/*'
# Exe contains standard files created when gem is initialised and therefore they should be left as is
- 'exe/**/*'
# Rakefile is generated when gem is initialised and therefore should be left as is
- 'Rakefile'
# Gemfile is generated when gem is initialised and therefore should be left as is
- 'Gemfile'
# Cop names are not displayed in offense messages by default. We find it useful to include this information so we can
# use it to investigate what the fix may be.
DisplayCopNames: true
# Style guide URLs are not displayed in offense messages by default. Again we find it useful to go straight to the
# documentation for a rule when investigating what the fix may be.
DisplayStyleGuide: true
# Disable this rubocop style because we want to make the arguments passed into quke available to anywhere when the code
# is executed rubocop:disable Style/GlobalVars
Style/GlobalVars:
Enabled: false