From: martin f. krafft Date: Mon, 18 Oct 2021 01:36:19 +0000 (+1300) Subject: add flake8 exceptions to trace line X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/7e431d37782ce1143c813976176a221e5c32a8e0?ds=sidebyside;hp=-c add flake8 exceptions to trace line --- 7e431d37782ce1143c813976176a221e5c32a8e0 diff --git a/.vim/after/ftplugin/python.vim b/.vim/after/ftplugin/python.vim index 34edf01..ee9073d 100644 --- a/.vim/after/ftplugin/python.vim +++ b/.vim/after/ftplugin/python.vim @@ -17,4 +17,4 @@ inoremap :call flake8#Flake8() let g:flake8_quickfix_height=3 let g:black_linelength = g:linelength -imap t import ipdb; ipdb.set_trace() +imap t import ipdb; ipdb.set_trace() # noqa:E402,E702