aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/stylelint.lua
diff options
context:
space:
mode:
authorpseudometa <73286100+chrisgrieser@users.noreply.github.com>2023-09-14 20:44:32 +0200
committerGitHub <noreply@github.com>2023-09-14 11:44:32 -0700
commit580ab1880e740f4aebbc72a05350461f3cdef53d (patch)
tree24111a2bf00765ee7835feb09b546f8a1ca68598 /lua/conform/formatters/stylelint.lua
parentdb7461afcf751023adeb346d833f2e5d40a420c4 (diff)
feat: add `markdownlint`, `stylelint`, `codespell`, and `biome` (#45)
* feat: add markdownlint, stylelint & codespell * feat: add `biome` * fix: indentation
Diffstat (limited to 'lua/conform/formatters/stylelint.lua')
-rw-r--r--lua/conform/formatters/stylelint.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/conform/formatters/stylelint.lua b/lua/conform/formatters/stylelint.lua
new file mode 100644
index 0000000..3d8361d
--- /dev/null
+++ b/lua/conform/formatters/stylelint.lua
@@ -0,0 +1,10 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://github.com/stylelint/stylelint",
+ description = "A mighty CSS linter that helps you avoid errors and enforce conventions.",
+ },
+ command = "stylelint",
+ args = { "--stdin", "--fix" },
+ stdin = true,
+}