Jython VsCode and pylint

Man I wish I had dug into this a little more when I set it up!

@5iver @noppes123 @Confectrician @mjcumming @vzorglub
I think I’ve addressed everything anyone was asking about having warnings off for, without disabling any more warning than the defaults used by VSCode. Using #8 as a starting point. Let me know if this works for you (don’t forget the env file as well) or if I missed something in it!

1 Like

Thanks. Will give that a try as well.

Thanks, @CrazyIvan359, @5iver, no more ‘false positives’.

1 Like

I just used the sample code:

I get the error:

The log member Resolution does not work either:

What is missing here? Any Idea?

The code though seems to run fine.

Nothing is missing. The log attribute is not added until the rule is created, but pylint is not aware of this. You can ignore it or use a directive to prevent it the error… or just use the when decorator!