假设我有一个带有长行的heredoc的文件:
some_string = '''
very long lines here, 20 lines each of length 500
'''
如何忽略所有的flake8 "行太长"文件中有错误,而不排除整个文件的检查?
这个答案用一行描述了# noqa
,但我不能把它放在这里。手册似乎没有描述如何忽略一大块代码。
哎呀,我找到答案了。我可以把# noqa
放在heredoc的末尾:
some_string = '''
very long lines here, 20 lines each of length 500
''' # noqa
我觉得自己很傻。