Steven Myint

Results 96 comments of Steven Myint

Thanks! To preserve backward compatibility, let's make an option to print out the whole file. Leave the current behavior as the default. Note that the diff-by-default behavior matches some other...

I tested `bashcompinit` out of curiousity. It works. ``` zsh $ autoload bashcompinit $ bashcompinit $ autoload compinit $ compinit $ eval "$(register-python-argcomplete docformatter)" $ docformatter - --help --recursive -h...

I traced the problematic absolute paths up the dependency chain to `build/F-Prime/Fw/Log/LogPortAi.xml`. This is generated by `fpp-to-xml`, which is a binary blob. So my tracing stopped there. ```xml Event log...

Very interesting! Allowing the user to configure the include paths definitely makes sense. And the approach you describe makes sense and basically matches what is done for the [ignoring languages...

No preferences from my side. I agree that it doesn't seem easy at all.

I can't seem to reproduce the problem, can you give an example? https://github.com/myint/docformatter/blob/7fa355102584e2d97e4a6251be9807d05c413d6f/test_docformatter.py#L253-L266

Thanks! Looks like Travis CI is noting an unused variable and some stylistic issues.

There seem to be test failures that result from this change. https://travis-ci.org/myint/autoflake/builds/84375491

I don't think this change works in general. For example, in the case of `codecs.py`, it introduces a syntax error. Note the conditional is left hanging without a body. ```...