Add mypy as preferred python linter

This commit is contained in:
Edward Litherland-Smith 2022-05-17 09:31:06 +01:00
parent d1ccf6f410
commit bf523d819c

View file

@ -2,7 +2,7 @@ setlocal shiftwidth=4
setlocal softtabstop=4
setlocal textwidth=88
let b:ale_linters = ['flake8']
let b:ale_linters = ['mypy', 'flake8']
let b:ale_fixers = ['black']
let g:python_style = 'rest'