aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Arcangeli <stevearc@stevearc.com>2023-11-14 23:07:58 -0800
committerSteven Arcangeli <stevearc@stevearc.com>2023-11-14 23:08:02 -0800
commit5c785a2e3fa6a701cd98a570b87304b8be7a2dfc (patch)
treeabfb7d1aa2bf883e3a76d8bd04fbcd495fc6bf7a
parentbf3b76bae090217d37cd9298470cdd548a514f21 (diff)
doc: normalize the formatting of formatter descriptions
-rw-r--r--lua/conform/formatters/ast-grep.lua2
-rw-r--r--lua/conform/formatters/csharpier.lua2
-rw-r--r--lua/conform/formatters/gn.lua2
-rw-r--r--lua/conform/formatters/markdownlint-cli2.lua2
-rw-r--r--lua/conform/formatters/pangu.lua2
-rw-r--r--lua/conform/formatters/pretty-php.lua2
-rw-r--r--lua/conform/formatters/rufo.lua2
7 files changed, 7 insertions, 7 deletions
diff --git a/lua/conform/formatters/ast-grep.lua b/lua/conform/formatters/ast-grep.lua
index 7e1a1cc..0b47e39 100644
--- a/lua/conform/formatters/ast-grep.lua
+++ b/lua/conform/formatters/ast-grep.lua
@@ -2,7 +2,7 @@
return {
meta = {
url = "https://ast-grep.github.io/",
- description = "A CLI tool for code structural search, lint and rewriting. Written in Rust",
+ description = "A CLI tool for code structural search, lint and rewriting. Written in Rust.",
},
command = "ast-grep",
args = { "scan", "--update-all", "$FILENAME" },
diff --git a/lua/conform/formatters/csharpier.lua b/lua/conform/formatters/csharpier.lua
index 50258e0..0da7da5 100644
--- a/lua/conform/formatters/csharpier.lua
+++ b/lua/conform/formatters/csharpier.lua
@@ -2,7 +2,7 @@
return {
meta = {
url = "https://github.com/belav/csharpier",
- description = "The opinionated C# code formatter",
+ description = "The opinionated C# code formatter.",
},
command = "dotnet-csharpier",
args = { "--write-stdout" },
diff --git a/lua/conform/formatters/gn.lua b/lua/conform/formatters/gn.lua
index 84ea242..fd576d9 100644
--- a/lua/conform/formatters/gn.lua
+++ b/lua/conform/formatters/gn.lua
@@ -2,7 +2,7 @@
return {
meta = {
url = "https://gn.googlesource.com/gn/",
- description = "gn build system",
+ description = "gn build system.",
},
command = "gn",
args = { "format", "--stdin" },
diff --git a/lua/conform/formatters/markdownlint-cli2.lua b/lua/conform/formatters/markdownlint-cli2.lua
index 69e4562..b95c8cc 100644
--- a/lua/conform/formatters/markdownlint-cli2.lua
+++ b/lua/conform/formatters/markdownlint-cli2.lua
@@ -2,7 +2,7 @@
return {
meta = {
url = "https://github.com/DavidAnson/markdownlint-cli2",
- description = "A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files with the markdownlint library",
+ description = "A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files with the markdownlint library.",
},
command = "markdownlint-cli2",
args = { "--fix", "$FILENAME" },
diff --git a/lua/conform/formatters/pangu.lua b/lua/conform/formatters/pangu.lua
index 54b60ca..af10b8b 100644
--- a/lua/conform/formatters/pangu.lua
+++ b/lua/conform/formatters/pangu.lua
@@ -2,7 +2,7 @@
return {
meta = {
url = "https://github.com/vinta/pangu.py",
- description = "Insert whitespace between CJK and half-width characters",
+ description = "Insert whitespace between CJK and half-width characters.",
},
command = "pangu",
stdin = true,
diff --git a/lua/conform/formatters/pretty-php.lua b/lua/conform/formatters/pretty-php.lua
index bf902dd..270a8d6 100644
--- a/lua/conform/formatters/pretty-php.lua
+++ b/lua/conform/formatters/pretty-php.lua
@@ -4,7 +4,7 @@ local util = require("conform.util")
return {
meta = {
url = "https://github.com/lkrms/pretty-php",
- description = "The opinionated PHP code formatter",
+ description = "The opinionated PHP code formatter.",
},
command = util.find_executable({
"vendor/bin/pretty-php",
diff --git a/lua/conform/formatters/rufo.lua b/lua/conform/formatters/rufo.lua
index ac041fa..11eb20d 100644
--- a/lua/conform/formatters/rufo.lua
+++ b/lua/conform/formatters/rufo.lua
@@ -1,7 +1,7 @@
return {
meta = {
url = "https://github.com/ruby-formatter/rufo",
- description = "Rufo is as an opinionated ruby formatter.",
+ description = "Rufo is an opinionated ruby formatter.",
},
command = "rufo",
exit_codes = { 0, 3 },