From a9e40a3d80435431f689b8d19005dd77a8f50224 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sat, 22 Oct 2016 19:38:47 +0200 Subject: Adding OAuth access scopes, fixing OAuth authorization UI, adding rate limiting to the API --- .rubocop.yml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 50 insertions(+), 4 deletions(-) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index 3a638a009..15ba678d4 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,14 +1,60 @@ Rails: Enabled: true -Metrics/LineLength: - Enabled: false - Style/PerlBackrefs: AutoCorrect: false Style/ClassAndModuleChildren: Enabled: false -Documentation: +Metrics/BlockNesting: + Max: 2 + +Metrics/LineLength: + AllowURI: true + Enabled: false + +Metrics/MethodLength: + CountComments: false + Max: 10 + +Metrics/ModuleLength: + Max: 100 + +Metrics/ParameterLists: + Max: 4 + CountKeywordArgs: true + +Style/AccessModifierIndentation: + EnforcedStyle: indent + +Style/CollectionMethods: + Enabled: true + PreferredMethods: + find_all: 'select' + +Style/Documentation: + Enabled: false + +Style/DoubleNegation: + Enabled: false + +Style/FrozenStringLiteralComment: Enabled: false + +Style/SpaceInsideHashLiteralBraces: + EnforcedStyle: space + +Style/TrailingCommaInLiteral: + EnforcedStyleForMultiline: 'comma' + +Style/RegexpLiteral: + Enabled: false + +AllCops: + TargetRubyVersion: 2.2 + Exclude: + - 'spec/**/*' + - 'db/**/*' + - 'app/views/**/*' + - 'config/**/*' -- cgit