Move to pyproject.toml and ruff

This commit is contained in:
Kovid Goyal 2023-01-09 15:49:49 +05:30
parent 44866a6e79
commit d248d5ad75
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
3 changed files with 25 additions and 30 deletions

View file

@ -1,9 +1,9 @@
" Scan the following dirs recursively for tags
let g:project_tags_dirs = ['kitty', 'kittens']
let g:project_tags_dirs = ['kitty', 'kittens', 'tools']
if exists('g:ale_linters')
let g:ale_linters['python'] = ['mypy', 'flake8']
let g:ale_linters['python'] = ['mypy', 'ruff']
else
let g:ale_linters = {'python': ['mypy', 'flake8']}
let g:ale_linters = {'python': ['mypy', 'ruff']}
endif
let g:ale_python_mypy_executable = './mypy-editor-integration'
let g:ycm_python_binary_path = 'python3'