Tyler Wince

Results 7 comments of Tyler Wince

I am not sure we need to that -- I think they serve different purposes. My thought initially was just to do something like this: ```go func getExpValue(exp interface{}) {...

Are you thinking we do something like: ``` ctx = inspect.stack()[~1].code_context[0] print( f"[{i.filename}:{i.lineno}] {ctx[ctx.find('(') + 1 : ctx.rfind(')')]} = {exp!r}" ) ``` so we don't have to iterate over the...

@phillbaker -- I am just picking back up on this project and adding a few new features as well as cleaning up some of the codebase. This plugin will follow...

Ah, this makes sense. I think that seems like a reasonable thing. Maybe something like: ``` if bandit_config_exists: use_bandit_config_options elif bandit_options_in_flake8: use_bandit_options_in_flake8 ```

Update on this: flake8-bandit will now honor a `.bandit` config file which contains `skips` or `tests` for blacklisting or whitelisting tests.

@shapiromatron - I would definitely accept a PR! Thanks for taking a look

It is likely a problem across the board. This was never really implemented fully and was kind of a hack when I first put it in. I think the main...