Skip to content

Commit

Permalink
doc: normalize the formatting of formatter descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Nov 15, 2023
1 parent bf3b76b commit 5c785a2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lua/conform/formatters/ast-grep.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
2 changes: 1 addition & 1 deletion lua/conform/formatters/csharpier.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
2 changes: 1 addition & 1 deletion lua/conform/formatters/gn.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
2 changes: 1 addition & 1 deletion lua/conform/formatters/markdownlint-cli2.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
2 changes: 1 addition & 1 deletion lua/conform/formatters/pangu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion lua/conform/formatters/pretty-php.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion lua/conform/formatters/rufo.lua
Original file line number Diff line number Diff line change
@@ -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 },
Expand Down

0 comments on commit 5c785a2

Please sign in to comment.