diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-07-13 10:41:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-13 10:41:39 -0700 |
| commit | cd1ccf056be9cbcc3d5cbefff08135276bc476ed (patch) | |
| tree | 82a0d7f77d4782b1aa06668298b48d7cf5ecb511 /lua/lspconfig/tailwindcss.lua | |
| parent | [docgen] Update CONFIG.md (diff) | |
| download | nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.gz nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.bz2 nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.lz nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.xz nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.tar.zst nvim-lspconfig-cd1ccf056be9cbcc3d5cbefff08135276bc476ed.zip | |
chore: change stylua to single quotes (#1068)
Diffstat (limited to 'lua/lspconfig/tailwindcss.lua')
| -rw-r--r-- | lua/lspconfig/tailwindcss.lua | 118 |
1 files changed, 59 insertions, 59 deletions
diff --git a/lua/lspconfig/tailwindcss.lua b/lua/lspconfig/tailwindcss.lua index 1a07d3a9..4ffe8f1c 100644 --- a/lua/lspconfig/tailwindcss.lua +++ b/lua/lspconfig/tailwindcss.lua @@ -1,81 +1,81 @@ -local configs = require "lspconfig/configs" -local util = require "lspconfig/util" +local configs = require 'lspconfig/configs' +local util = require 'lspconfig/util' -local server_name = "tailwindcss" -local bin_name = "tailwindcss-language-server" +local server_name = 'tailwindcss' +local bin_name = 'tailwindcss-language-server' configs[server_name] = { default_config = { - cmd = { bin_name, "--stdio" }, + cmd = { bin_name, '--stdio' }, -- filetypes copied and adjusted from tailwindcss-intellisense filetypes = { -- html - "aspnetcorerazor", - "astro", - "astro-markdown", - "blade", - "django-html", - "edge", - "eelixir", -- vim ft - "ejs", - "erb", - "eruby", -- vim ft - "gohtml", - "haml", - "handlebars", - "hbs", - "html", + 'aspnetcorerazor', + 'astro', + 'astro-markdown', + 'blade', + 'django-html', + 'edge', + 'eelixir', -- vim ft + 'ejs', + 'erb', + 'eruby', -- vim ft + 'gohtml', + 'haml', + 'handlebars', + 'hbs', + 'html', -- 'HTML (Eex)', -- 'HTML (EEx)', - "html-eex", - "jade", - "leaf", - "liquid", - "markdown", - "mdx", - "mustache", - "njk", - "nunjucks", - "php", - "razor", - "slim", - "twig", + 'html-eex', + 'jade', + 'leaf', + 'liquid', + 'markdown', + 'mdx', + 'mustache', + 'njk', + 'nunjucks', + 'php', + 'razor', + 'slim', + 'twig', -- css - "css", - "less", - "postcss", - "sass", - "scss", - "stylus", - "sugarss", + 'css', + 'less', + 'postcss', + 'sass', + 'scss', + 'stylus', + 'sugarss', -- js - "javascript", - "javascriptreact", - "reason", - "rescript", - "typescript", - "typescriptreact", + 'javascript', + 'javascriptreact', + 'reason', + 'rescript', + 'typescript', + 'typescriptreact', -- mixed - "vue", - "svelte", + 'vue', + 'svelte', }, init_options = { userLanguages = { - eelixir = "html-eex", - eruby = "erb", + eelixir = 'html-eex', + eruby = 'erb', }, }, settings = { tailwindCSS = { validate = true, lint = { - cssConflict = "warning", - invalidApply = "error", - invalidScreen = "error", - invalidVariant = "error", - invalidConfigPath = "error", - invalidTailwindDirective = "error", - recommendedVariantOrder = "warning", + cssConflict = 'warning', + invalidApply = 'error', + invalidScreen = 'error', + invalidVariant = 'error', + invalidConfigPath = 'error', + invalidTailwindDirective = 'error', + recommendedVariantOrder = 'warning', }, }, }, @@ -92,8 +92,8 @@ configs[server_name] = { end end, root_dir = function(fname) - return util.root_pattern("tailwind.config.js", "tailwind.config.ts")(fname) - or util.root_pattern("postcss.config.js", "postcss.config.ts")(fname) + return util.root_pattern('tailwind.config.js', 'tailwind.config.ts')(fname) + or util.root_pattern('postcss.config.js', 'postcss.config.ts')(fname) or util.find_package_json_ancestor(fname) or util.find_node_modules_ancestor(fname) or util.find_git_ancestor(fname) |
