From 65466d0b009251f5dfc745abfac9540f2b597eb8 Mon Sep 17 00:00:00 2001 From: christianchiarulli Date: Sun, 2 Jan 2022 14:37:51 -0500 Subject: [PATCH] diagnostic flake8 enabled by default --- lua/user/lsp/null-ls.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/user/lsp/null-ls.lua b/lua/user/lsp/null-ls.lua index 874e19c..c7d40fd 100644 --- a/lua/user/lsp/null-ls.lua +++ b/lua/user/lsp/null-ls.lua @@ -14,6 +14,6 @@ null_ls.setup({ formatting.prettier.with({ extra_args = { "--no-semi", "--single-quote", "--jsx-single-quote" } }), formatting.black.with({ extra_args = { "--fast" } }), formatting.stylua, - -- diagnostics.flake8 + diagnostics.flake8 }, })