emacsでflake8を使用しています。ファイルを
# comment comment comment comment comment comment comment comment comment comment
class Foo(object):
pass
構文エラーはありませんと表示されます。しかし、それを次のようにラップすると:
# comment comment comment comment comment comment comment comment
# comment comment
class Foo(object):
pass
「class」行に「E302 expected 2 blank lines, found 0」が表示されます。
これはバグですか?config設定で修正できますか?