Wollkind
- Total activity 17
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 6
-
-
-
-
Wollkind created a post, Option to disable "redundant character escape" inspection?
Maybe I'm missing something simple, but I'm not seeing where this option is configured. Are there some inspections that can't be turned off? I'm using RubyMine 2017.1 -
Wollkind created a post, Ways to make Inspection: Unresolved Ruby reference more useful?
Because of how ruby works, there are often many spurious 'unresolved ruby reference' warnings in code that is perfectly fine. A common example are objects with method_missing methods. Because of ... -
Wollkind created a post, Possible to reconfigure inspections to require rather than warn against?
My team prefers the somewhat un-ruby way of putting parentheses around conditionals, explicitly using the return statement, and so forth. Is it possible to use the rubymine inspections which warn ... -
Wollkind created a post, Scope Inspection: possible to separate uninitialized variable warning from shadow warning?
Scope inspection warns me about 'variable may be uninitialized' which I really don't care about, and 'parameter shadows outer...' which I _do_ care about. As is, the unintialized variable warnings... -
Wollkind created a post, Rubymine finds some model fields, but not others
In my codebase, I have a lot of activerecord models, and an up to date schema.rb. However, rubymine continues to insist that some fields are not valid even though they exist in the database and in... -
Wollkind commented, -
Wollkind created a post, Ruby/Rubymine best practice for Hash.delete_if unused variables
I'm trying to overhaul my codebase here to make better use of warnings that Rubymine is giving us, and I'd like to make use of the unused local variable ones but am running into some cases that see...