aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform
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
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')
-rw-r--r--lua/conform/formatters/biome.lua10
-rw-r--r--lua/conform/formatters/codespell.lua14
-rw-r--r--lua/conform/formatters/markdownlint.lua10
-rw-r--r--lua/conform/formatters/stylelint.lua10
4 files changed, 44 insertions, 0 deletions
diff --git a/lua/conform/formatters/biome.lua b/lua/conform/formatters/biome.lua
new file mode 100644
index 0000000..f6d6ae8
--- /dev/null
+++ b/lua/conform/formatters/biome.lua
@@ -0,0 +1,10 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://github.com/biomejs/biome",
+ description = "A toolchain for web projects, aimed to provide functionalities to maintain them.",
+ },
+ command = "biome",
+ stdin = true,
+ args = { "format", "--stdin-file-path", "$FILENAME" },
+}
diff --git a/lua/conform/formatters/codespell.lua b/lua/conform/formatters/codespell.lua
new file mode 100644
index 0000000..ca07415
--- /dev/null
+++ b/lua/conform/formatters/codespell.lua
@@ -0,0 +1,14 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://github.com/codespell-project/codespell",
+ description = "Check code for common misspellings.",
+ },
+ command = "codespell",
+ stdin = false,
+ args = {
+ "$FILENAME",
+ "--write-changes",
+ "--check-hidden", -- conform's temp file is hidden
+ },
+}
diff --git a/lua/conform/formatters/markdownlint.lua b/lua/conform/formatters/markdownlint.lua
new file mode 100644
index 0000000..654a603
--- /dev/null
+++ b/lua/conform/formatters/markdownlint.lua
@@ -0,0 +1,10 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://github.com/DavidAnson/markdownlint",
+ description = "A Node.js style checker and lint tool for Markdown/CommonMark files.",
+ },
+ command = "markdownlint",
+ args = { "--fix", "$FILENAME" },
+ stdin = false,
+}
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,
+}