diff options
Diffstat (limited to '.rubocop.yml')
| -rw-r--r-- | .rubocop.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 28352bd5..a8f660ca 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,6 +1,7 @@ inherit_from: .rubocop_todo.yml AllCops: + DisabledByDefault: true NewCops: enable SuggestExtensions: false TargetRubyVersion: 2.3 @@ -9,8 +10,14 @@ AllCops: - 'examples/**/*' - 'vendor/bundle/**/*' +Layout: + Enabled: true + Layout/CommentIndentation: AllowForAlignment: true Layout/ExtraSpacing: AllowBeforeTrailingComments: true + +Style: + Enabled: true |
