Skip to content

Commit

Permalink
0.5.2
Browse files Browse the repository at this point in the history
Turn off Lint/Super

Fixes #195
  • Loading branch information
searls committed Aug 26, 2020
1 parent ae65e06 commit aba3fa4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog

## 0.5.2

* Turned off `Lint/MissingSuper`, because it effectively bans a common idiom in
Sorbet ([#195](https://github.com/testdouble/standard/issues/195)) and might
be a bit too heavy-handed/opinionated for cases where a class is designed
intentionally to not run its parent's initializer (like abstract superclasses
more generally)

## 0.5.1

* Enabled `Style/MultilineWhenThen`
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
standard (0.5.1)
standard (0.5.2)
rubocop (~> 0.89.1)
rubocop-performance (~> 1.7.1)

Expand Down
3 changes: 0 additions & 3 deletions config/base.yml
Expand Up @@ -423,9 +423,6 @@ Lint/MissingCopEnableDirective:
Enabled: true
MaximumRangeSize: .inf

Lint/MissingSuper:
Enabled: true

Lint/MixedRegexpCaptureTypes:
Enabled: true

Expand Down
2 changes: 1 addition & 1 deletion lib/standard/version.rb
@@ -1,3 +1,3 @@
module Standard
VERSION = Gem::Version.new("0.5.1")
VERSION = Gem::Version.new("0.5.2")
end

0 comments on commit aba3fa4

Please sign in to comment.