From cd1ccf056be9cbcc3d5cbefff08135276bc476ed Mon Sep 17 00:00:00 2001 From: Michael Lingelbach Date: Tue, 13 Jul 2021 10:41:39 -0700 Subject: chore: change stylua to single quotes (#1068) --- lua/lspconfig/html.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lua/lspconfig/html.lua') diff --git a/lua/lspconfig/html.lua b/lua/lspconfig/html.lua index 095d70bf..120139da 100644 --- a/lua/lspconfig/html.lua +++ b/lua/lspconfig/html.lua @@ -1,22 +1,22 @@ -local configs = require "lspconfig/configs" -local util = require "lspconfig/util" +local configs = require 'lspconfig/configs' +local util = require 'lspconfig/util' -local server_name = "html" -local bin_name = "vscode-html-language-server" +local server_name = 'html' +local bin_name = 'vscode-html-language-server' -local root_pattern = util.root_pattern "package.json" +local root_pattern = util.root_pattern 'package.json' configs[server_name] = { default_config = { - cmd = { bin_name, "--stdio" }, - filetypes = { "html" }, + cmd = { bin_name, '--stdio' }, + filetypes = { 'html' }, root_dir = function(fname) return root_pattern(fname) or vim.loop.os_homedir() end, settings = {}, init_options = { embeddedLanguages = { css = true, javascript = true }, - configurationSection = { "html", "css", "javascript" }, + configurationSection = { 'html', 'css', 'javascript' }, }, }, docs = { -- cgit v1.2.3-70-g09d2