default.yml in rubocopital-0.5.3 vs default.yml in rubocopital-0.6.0

- old
+ new

@@ -20,57 +20,51 @@ - config/spring.rb - config/application.rb DisplayCopNames: true DisplayStyleGuide: true -Layout/AlignHash: +Layout/HashAlignment: EnforcedHashRocketStyle: key # key - left alignment of keys # 'a' => 2 # 'bb' => 3 EnforcedColonStyle: key # key - left alignment of keys # a: 0 # bb: 1 - # YC Compliant EnforcedLastArgumentHashStyle: ignore_implicit # ignore_implicit - Ignore only implicit hashes. # Accepts: # function(a: 1, # b: 2) # Registers an offense for: # function({a: 1, # b: 2}) -Layout/AlignParameters: - # YC Compliant +Layout/ParameterAlignment: EnforcedStyle: with_fixed_indentation # The `with_fixed_indentation` style aligns the following lines with one # level of indentation relative to the start of the line with the method call. # # method_call(a, # b) Style/AndOr: - # YC Compliant EnforcedStyle: conditionals # `and` and `or` are banned only in conditionals (conditionals) Style/BlockDelimiters: - # YC Compliant EnforcedStyle: line_count_based # The `line_count_based` style enforces braces around single line blocks and # do..end around multi-line blocks. Exclude: - spec/**/* Style/ClassAndModuleChildren: - # YC Compliant EnforcedStyle: compact Style/IdenticalConditionalBranches: - # YC Compliant Enabled: false # Redirect_to usage in conditionals Style/FrozenStringLiteralComment: # Ensure default is followed @@ -78,157 +72,102 @@ Style/ExpandPathArguments: Enabled: false Style/NumericPredicate: - # YC Compliant Enabled: false # Use .positive? instead of > 0 # Use .zero? instead of == 0 # Use .nonzero? instead of != 0. Style/GlobalVars: - # YC Compliant Enabled: true AllowedVariables: [$ASSET_MODE] # Do not introduce global variables. (used for cucumber custom_env) Style/EachWithObject: - # YC Compliant Enabled: false Style/UnpackFirst: Enabled: false -Rails/Date: - # YC Compliant - EnforcedStyle: flexible - # The value `flexible` allows usage of `Date.current`, `Date.yesterday`, etc - # (but not `Date.today`) which are overridden by ActiveSupport to handle current - # time zone. - Layout/EndAlignment: - # YC Compliant EnforcedStyleAlignWith: variable Layout/HeredocArgumentClosingParenthesis: Enabled: true -Layout/IndentFirstParameter: +Layout/FirstParameterIndentation: Enabled: true EnforcedStyle: consistent Layout/MultilineMethodCallIndentation: EnforcedStyle: indented Layout/MultilineOperationIndentation: - # YC Compliant EnforcedStyle: indented Style/TrivialAccessors: Enabled: true Metrics/AbcSize: - # YC Compliant Enabled: false Metrics/LineLength: - # YC Compliant Max: 120 Metrics/BlockLength: - # YC Compliant CountComments: false # count full line comments? Max: 50 Exclude: - spec/**/**.rb - config/routes.rb Metrics/ClassLength: - # YC Compliant Enabled: false Metrics/MethodLength: - # YC Compliant Max: 30 Severity: warning Metrics/ModuleLength: - # YC Compliant Enabled: false -Documentation: - # YC Compliant +Style/Documentation: Enabled: false -Rails: - # YC Compliant - Enabled: true Bundler/OrderedGems: - # YC Compliant TreatCommentsAsGroupSeparators: true -Rails/OutputSafety: - # YC Compliant +Style/EmptyMethod: Enabled: false - # Prefer safe_join instead of html_save -Rails/HttpPositionalArguments: - # YC Compliant - Enabled: false - # prefer get(:new, params: {}) instead of get(:new, {}) - -Rails/SkipsModelValidations: - # YC Compliant - Enabled: false - -Rails/HasAndBelongsToMany: - # YC Compliant - Enabled: false - -# This cop checks that models subclass ApplicationRecord with Rails 5.0. -Rails/ApplicationRecord: - Enabled: false - -# This cop checks that models subclass ApplicationJob with Rails 5.0. -Rails/ApplicationJob: - Enabled: false - -Rails/BelongsTo: +Style/FloatDivision: Enabled: true + EnforcedStyle: single_coerce -Rails/IgnoredSkipActionFilterOption: - Enabled: true - -Rails/LinkToBlank: - Enabled: true - -Style/EmptyMethod: - # YC Compliant - Enabled: false - Style/IpAddresses: Enabled: true Style/ModuleFunction: - # YC Compliant Enabled: false Style/MultilineMethodSignature: Enabled: true +Style/MultilineWhenThen: + Enabled: true + Style/NegatedUnless: Enabled: true EnforcedStyle: both Style/StringLiterals: - # YC Compliant Enabled: false Style/StringLiteralsInInterpolation: - # YC Compliant Enabled: false Lint/DisjunctiveAssignmentInConstructor: Enabled: true @@ -236,20 +175,13 @@ Enabled: true Lint/SafeNavigationWithEmpty: Enabled: true +Lint/SendWithMixinArgument: + Enabled: true + Lint/ToJSON: Enabled: true -Rails/UnknownEnv: - Environments: - - development - - test - - review - - staging - - acceptance - - training - - production - -Rails/LexicallyScopedActionFilter: - Enabled: false +Gemspec/RubyVersionGlobalsUsage: + Enabled: true