05 Aug 12:16
github-actionsv1.79.2
517485a
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.79.2 Latest Latest Bug fixesLayout/EmptyLinesAroundClassBody
when a class body starts with a blank line and defines a multiline superclass. (@koic)Layout/EmptyLinesAroundArguments
with multiline strings that contain only whitespace. (@earlopain)Layout/EmptyLinesAfterModuleInclusion
when inclusion is called with modifier. (@r7kamura)Lint/UselessAssignment
when duplicate assignments appear in if
branch inside a loop and the variable is used outside while
loop. (@koic)Style/MapToHash
when using to_h
with block argument. (@koic)Style/MapToSet
when using to_set
with block argument. (@koic)Style/SafeNavigation
when ternary expression with operator method call with method chain. (@koic)Style/RedundantParentheses
. (@lovro-bikic)There was an error while loading. Please reload this page.
1 person reacted
RuboCop v1.79.131 Jul 08:40
github-actionsv1.79.1
5ecd375
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.79.1 Bug fixesStyle/ArgumentsForwarding
when the method arguments contain *
, **
or &
, and the method call contains self
as the first argument. (@earlopain)Layout/EmptyLinesAfterModuleInclusion
when prepend
is used with block methods. (@koic)Style/RedundantParentheses
when parentheses are used around a one-line rescue
expression inside a ternary operator. (@koic)Lint/UselessAssignment
when duplicate assignments in if
branch inside a loop. (@koic)Lint/UselessAssignment
with retry
in rescue
branch. (@earlopain)Style/RedundantParentheses
when parentheses are used around a one-line rescue
expression inside array or hash literals. (@koic)Naming/MethodName
cop to detect offenses within alias
and alias_method
calls. (@viralpraxis)||
to Lint/LiteralAsCondition
. (@zopolis4)There was an error while loading. Please reload this page.
1 person reacted
RuboCop v1.79.024 Jul 08:29
github-actionsv1.79.0
1c543c8
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.79.0 New featuresLayout/EmptyLinesAfterModuleInclusion
. (@lovro-bikic)Naming/MethodName
cop to detect offenses within Data
members. (@viralpraxis)Style/ParallelAssignment
when a lambda with parallel assignment is used on the RHS. (@koic)Style/AccessorGrouping
separated autocorrect. (@r7kamura)Lint/UselessAssignment
when the assignment is inside a loop body. (@5hun-s)Style/RedundantParentheses
when using parentheses around a rescue
expression on a one-line. (@koic)Style/AccessModifierDeclarations
when using a grouped access modifier declaration. (@girasquid)Style/SingleLineMethods
when defining a single-line singleton method. (@koic)Style/SingleLineMethods
when a single-line method definition contains a modifier. (@koic)Naming/MethodName
cop false positives with define_method
and operator names. (@viralpraxis)Naming/PredicateMethod
ignoring the implicit nil
from missing else
branches. (@earlopain)Style/ItBlockParameter
cop error on always
style and missing block body. (@viralpraxis)Lint/RequireRangeParentheses
to not register false positives when range elements span multiple lines. (@dvandersluis)Style/SoleNestedConditional
to properly correct assignments within and
. (@dvandersluis)tsort
gem to runtime dependency for Ruby 3.5-dev. (@koic)Style/ItAssignment
to consider all local variable and method parameter names. (@dvandersluis)Layout/SpaceAroundKeyword
to offend for missing whitespace between return
and opening parenthesis. (@lovro-bikic)Layout/SpaceAroundOperators
aware of alternative and as pattern matchings. (@koic)Lint/RedundantSafeNavigation
aware of builtin convert methods to_s
, to_i
, to_f
, to_a
, and to_h
. (@koic)InferNonNilReceiver
config to Lint/RedundantSafeNavigation
to check previous code paths if the receiver is non-nil. (@fatkodima)array1.any? { |elem| array2.member?(elem) }
and array1.none? { |elem| array2.member?(elem) }
in Style/ArrayIntersect
. (@lovro-bikic)There was an error while loading. Please reload this page.
4 people reacted
RuboCop v1.78.008 Jul 07:20
github-actionsv1.78.0
dd441f4
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.78.0 New featuresNaming/MethodName
cop to detect offenses within define_method
calls. (@viralpraxis)Naming/MethodName
cop to handle offenses within Struct
members. (@viralpraxis)Security/Eval
cop to detect Kernel.eval
calls. (@viralpraxis)Style/HashConversion
to avoid syntax error. (@koic)Style/SingleLineMethods
. (@koic)--format
disables parallelization. (@r7kamura)Lint/DuplicateMethods
cop when self-alias trick is used. (@viralpraxis)Lint/LiteralAsCondition
when a literal is used inside ||
in case
condition. (@koic)Style/HashConversion
for nested Hash[]
calls. (@dvandersluis)Lint/RedundantTypeConversion
when using parentheses with no arguments or any arguments. (@koic)Style/ItBlockParameter
when using a single numbered parameter after multiple numbered parameters in a method chain. (@koic)WaywardPredicates
config to Naming/PredicateMethod
to handle methods that look like predicates but aren't. (@dvandersluis)There was an error while loading. Please reload this page.
1 person reacted
RuboCop v1.77.020 Jun 06:55
github-actionsv1.77.0
e8e3ae7
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.77.0 New featuresGemspec/AttributeAssignment
cop. (@viralpraxis)Style/CollectionQuerying
. (@lovro-bikic)DefaultToNil
option to Style/FetchEnvVar
cop. (@Yuhi-Sato)Gemspec/RequireMFA
cop autocorrect to insert MFA directive after last metadata
assignment. (@viralpraxis)Layout/SpaceInsideArrayLiteralBrackets
cop to analyze nested constant patterns. (@viralpraxis)Style/HashConversion
when using nested Hash[]
. (@koic)Style/SoleNestedConditional
when autocorrecting nested if/unless/if. (@ssagara00)Layout/SpaceBeforeBrackets
when call desugared Hash#[]
to lvar receiver with a space around the dot. (@koic)Style/RedundantParentheses
when assigning a parenthesized one-line in
pattern matching. (@koic)Style/RedundantSelf
when receiver and lvalue have the same name in or-assignment. (@koic)Lint/SelfAssignment
to allow inline RBS comments. (@Morriar)Style/MethodCallWithArgsParentheses
false positive on forwarded keyword argument with additional arguments. (@viralpraxis)Style/RedundantParentheses
. (@lovro-bikic)Naming/PredicateMethod
to consider negation (!
/not
) as boolean values. (@dvandersluis)Naming/PredicateMethod
to treat returned predicate method calls as boolean values. (@dvandersluis)There was an error while loading. Please reload this page.
4 people reacted
RuboCop v1.76.217 Jun 09:09
github-actionsv1.76.2
3676d66
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.76.2 Bug fixesLint/EmptyInterpolation
when using a boolean literal inside interpolation. (@koic)Lint/UselessDefaultValueArgument
when fetch
call without a receiver. (@koic)Style/ConditionalAssignment
cop when using one-line branches. (@viralpraxis)Style/RedundantParentheses
when using parenthesized one-line pattern matching in endless method definition. (@koic)Style/RedundantSelf
when local variable assignment name is used in nested if
. (@koic)Lint/SafeNavigationChain
when a safe navigation is used on the left-hand side of a -
operator when inside an array. (@koic)AllowedPatterns
and AllowBangMethods
configuration to Naming/PredicateMethod
. (@dvandersluis)Lint/AmbiguousRange
. (@lovro-bikic)Lint/UselessAccessModifier
. (@lovro-bikic)Style/MinMaxComparison
. (@lovro-bikic)There was an error while loading. Please reload this page.
2 people reacted
RuboCop v1.76.109 Jun 07:15
github-actionsv1.76.1
c74a5b3
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.76.1 Bug fixesLint/EmptyInterpolation
when using primitives in interpolation. (@ka8725)Style/SafeNavigation
when using ternary expression with index access call. (@koic)Style/SafeNavigation
when using ternary expression with operator method call. (@koic)Style/RedundantArrayFlatten
when Array#join
is used with an argument other than the default nil
. (@koic)Style/RedundantParentheses
when using one-line in
pattern matching in operator. (@koic)Naming/PredicateMethod
cop error on empty parentheses method body. (@viralpraxis)Style/SafeNavigation
cop error on indexed assignment in ternary expression. (@viralpraxis)Style/SafeNavigation
invalid autocorrection on double colon method call. (@viralpraxis)There was an error while loading. Please reload this page.
5 people reacted
RuboCop v1.76.004 Jun 06:12
github-actionsv1.76.0
190a64d
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.76.0 New featuresNaming/PredicateMethod
cop to check that predicate methods end with ?
and non-predicate methods do not. (@dvandersluis)Style/EmptyStringInsideInterpolation
cop. (@zopolis4)Style/RedundantArrayFlatten
. (@lovro-bikic)Lint/UselessOr
. (@lovro-bikic)Gemspec
department cops to detect offenses if specification variable is it
or a numbered parameter. (@viralpraxis)Lint/UselessDefaultValueArgument
. (@lovro-bikic)Style/RedundantParentheses
when using a one-line rescue
expression as a method argument. (@koic)Style/RedundantParentheses
when using one-line pattern matching. (@koic)Style/SafeNavigation
when a ternary expression is used in a method argument. (@steiley)Lint/LiteralAsCondition
autocorrect when branches of a condition have comments. (@zopolis4)EnforcedStyle: allow_single_line
as the default to Style/ItBlockParameter
. (@koic)Lint/ShadowingOuterLocalVariable
by default. (@nekketsuuu)!=
) in Lint/IdentityComparison
. (@lovro-bikic)There was an error while loading. Please reload this page.
3 people reacted
RuboCop v1.75.828 May 14:11
github-actionsv1.75.8
38333dc
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.75.8 Bug fixesLint/FloatComparison
cop to detect floating-point number comparisons in case
statements. (@daisuke)Style/RedundantFormat
with invalid format arguments. (@earlopain)Style/DefWithParentheses
when using endless method definition with empty parentheses and a space before =
. (@koic)EnforcedStyle: with_fixed_indentation
of Layout/ArgumentAlignment
and EnforcedStyle: consistent
of Layout/FirstArgumentIndentation
and Layout/HashAlignment
. (@koic)Layout/EmptyLinesAroundAccessModifier
cop error on trailing access modifier. (@viralpraxis)Lint/DuplicateMethods
cop error on to
option is dynamically generated and prefix
is enabled. (@viralpraxis)Style/MapToHash
with destructuring argument. (@lovro-bikic)rubocop:todo
EOL comment. (@jonas054)There was an error while loading. Please reload this page.
4 people reacted
RuboCop v1.75.721 May 15:29
github-actionsv1.75.7
3bff1ae
Compare Choose a tag to compare
Could not load tags
Nothing to show
{{ refName }} defaultLoading
RuboCop v1.75.7 Bug fixesStyle/IfUnlessModifierOfIfUnless
when using nested modifier. (@koic)Layout/SpaceBeforeBrackets
when using space between method argument parentheses and left bracket. (@koic)Layout/SpaceBeforeBrackets
when using space between receiver and left brackets, and a space inside left bracket. (@koic)Style/AccessModifierDeclarations
cop error on semicolon after modifier. (@viralpraxis)Style/AccessModifierDeclarations
cop error on symbol modifier without surrounding scope. (@viralpraxis)Style/AccessModifierDeclarations
cop false positives when there are no method definitions and style is inline
. (@viralpraxis)Lint/UselessAssignment
cop error when using nested assignment with splat. (@earlopain)Gemspec/DuplicatedAssignment
cop to detect duplicated indexed assignment. (@viralpraxis)prefix
argument for delegate
method in Lint/DuplicateMethods
. (@lovro-bikic)There was an error while loading. Please reload this page.
1 person reacted
Previous 1 2 3 4 5 … 26 27 Next Previous NextRetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4