Disable checks for assembly

Since it doesn't support other architectures.
This commit is contained in:
Eugen Wissner 2025-04-17 10:30:15 +02:00
parent 897c8b99dc
commit 03aca09b82
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0

View File

@ -15,6 +15,7 @@ vim.g.ale_linters = {
php = {'phpcs', 'phpstan'}, php = {'phpcs', 'phpstan'},
ruby = {'rubocop'}, ruby = {'rubocop'},
cpp = {}, cpp = {},
asm = {},
} }
vim.g.ale_ruby_rubocop_executable = 'bundle' vim.g.ale_ruby_rubocop_executable = 'bundle'
vim.g.ale_cpp_cc_options = '-std=c++17 -Wall' vim.g.ale_cpp_cc_options = '-std=c++17 -Wall'