From 03aca09b825c9f77cd04461a7651d98e75870477 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Thu, 17 Apr 2025 10:30:15 +0200 Subject: [PATCH] Disable checks for assembly Since it doesn't support other architectures. --- .config/nvim/lua/plugins.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index f0cb22c..65342bf 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -15,6 +15,7 @@ vim.g.ale_linters = { php = {'phpcs', 'phpstan'}, ruby = {'rubocop'}, cpp = {}, + asm = {}, } vim.g.ale_ruby_rubocop_executable = 'bundle' vim.g.ale_cpp_cc_options = '-std=c++17 -Wall'