blob: 898f418b0dcd0ae4d96ed7e3a384353f157c0cd4 (
plain)
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
|
# Bellow the changes to default Rubocop behavior.
# See options at:
# https://github.com/bbatsov/rubocop/tree/master/config
# General
# Multi-line method chaining should be done with leading dots.
Style/DotPosition:
EnforcedStyle: trailing
SupportedStyles:
- leading
- trailing
# Enabling!
Style/CollectionMethods:
Description: 'Preferred collection methods.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#map-find-select-reduce-size'
Enabled: true
Style/StringMethods:
Description: 'Checks if configured preferred methods are used over non-preferred.'
Enabled: true
# Disabling!
Style/StringLiterals:
Description: 'Checks if uses of quotes match the configured preference.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#consistent-string-literals'
Enabled: false
|