diff --git a/session.vim b/session.vim index 6faeaa230..6d946b79a 100644 --- a/session.vim +++ b/session.vim @@ -1,9 +1,9 @@ " Scan the following dirs recursively for tags let g:project_tags_dirs = ['kitty', 'kittens', 'tools'] if exists('g:ale_linters') - let g:ale_linters['python'] = ['mypy', 'ruff --no-update-check'] + let g:ale_linters['python'] = ['mypy', 'ruff'] else - let g:ale_linters = {'python': ['mypy', 'ruff --no-update-check']} + let g:ale_linters = {'python': ['mypy', 'ruff']} endif let g:ale_python_mypy_executable = './mypy-editor-integration' let g:ale_fixers = {