diff --git a/config/default.yml b/config/default.yml index 84fc06d..d88b0a4 100644 --- a/config/default.yml +++ b/config/default.yml @@ -21,6 +21,9 @@ Layout/ArgumentAlignment: Layout/CaseIndentation: EnforcedStyle: end AutoCorrect: true + +Layout/EmptyLinesAroundAttributeAccessor: + Enabled: true Layout/EndAlignment: EnforcedStyleAlignWith: start_of_line @@ -55,6 +58,9 @@ Layout/LineLength: - http - https +Layout/SpaceAroundMethodCallOperator: + Enabled: true + Layout/TrailingEmptyLines: EnforcedStyle: final_newline @@ -66,6 +72,8 @@ Lint/AmbiguousBlockAssociation: Enabled: true Exclude: - spec/**/*_spec.rb +Lint/DeprecatedOpenSSLConstant: + Enabled: true Lint/MixedRegexpCaptureTypes: Enabled: true @@ -73,6 +81,12 @@ Lint/MixedRegexpCaptureTypes: Lint/OrderedMagicComments: Enabled: true +Lint/RaiseException: + Enabled: true + +Lint/StructNewOverride: + Enabled: true + # TODO: Fix this one Lint/UriEscapeUnescape: Enabled: false @@ -184,6 +198,9 @@ RSpec/NestedGroups: Style/Documentation: Enabled: false +Style/ExponentialNotation: + Enabled: true + Style/FrozenStringLiteralComment: Enabled: false diff --git a/rubocop-wundertax.gemspec b/rubocop-wundertax.gemspec index cbe6d0f..2208d35 100644 --- a/rubocop-wundertax.gemspec +++ b/rubocop-wundertax.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'rubocop-wundertax' - s.version = '2.0.4' + s.version = '2.0.5' s.summary = 'RuboCop Wundertax' s.description = 'Code style checking for Wundertax Ruby repositories' s.homepage = 'https://github.com/wundertax/rubocop-wundertax'