From e61da1eae59d9f4c6cdb076bdb73e7572f49c069 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Thu, 24 Oct 2024 09:27:23 -0700 Subject: refactor(docs): drop redundant default_config #3397 Problem: default_config duplicated in `docs` items. Solution: delete it. docgen autogenerates this now. --- lua/lspconfig/configs/css_variables.lua | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'lua/lspconfig/configs/css_variables.lua') diff --git a/lua/lspconfig/configs/css_variables.lua b/lua/lspconfig/configs/css_variables.lua index dd9257dd..0a75c88b 100644 --- a/lua/lspconfig/configs/css_variables.lua +++ b/lua/lspconfig/configs/css_variables.lua @@ -39,27 +39,5 @@ CSS variables autocompletion and go-to-definition npm i -g css-variables-language-server ``` ]], - default_config = { - root_dir = [[root_pattern("package.json", ".git") or bufdir]], - settings = [[ -cssVariables = { - lookupFiles = { '**/*.less', '**/*.scss', '**/*.sass', '**/*.css' }, - blacklistFolders = { - '**/.cache', - '**/.DS_Store', - '**/.git', - '**/.hg', - '**/.next', - '**/.svn', - '**/bower_components', - '**/CVS', - '**/dist', - '**/node_modules', - '**/tests', - '**/tmp', - }, -}, - ]], - }, }, }