diff options
author | w0rp <devw0rp@gmail.com> | 2022-12-25 15:13:04 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2022-12-25 15:13:10 +0000 |
commit | 2ae04b310a1f1a2f08a3007702f7aeb16443c8b2 (patch) | |
tree | 1ba4a22f50e904211384cca36301d025dea7d4cd /autoload | |
parent | 4c5c47b5939ab3446ccc2f9cb1de57a1ec47e379 (diff) | |
download | ale-2ae04b310a1f1a2f08a3007702f7aeb16443c8b2.zip |
Enable ruff for Python by default
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/linter.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim index 99faa357..d90deace 100644 --- a/autoload/ale/linter.vim +++ b/autoload/ale/linter.vim @@ -51,7 +51,7 @@ let s:default_ale_linters = { \ 'jsonc': [], \ 'perl': ['perlcritic'], \ 'perl6': [], -\ 'python': ['flake8', 'mypy', 'pylint', 'pyright'], +\ 'python': ['flake8', 'mypy', 'pylint', 'pyright', 'ruff'], \ 'rust': ['cargo', 'rls'], \ 'spec': [], \ 'text': [], |