aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--lua/conform/formatters/perlimports.lua13
2 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index 8622df0..6d9712e 100644
--- a/README.md
+++ b/README.md
@@ -173,6 +173,7 @@ To view configured and available formatters, as well as to see the path to the l
- [nixfmt](https://github.com/serokell/nixfmt) - nixfmt is a formatter for Nix code, intended to apply a uniform style.
- [nixpkgs_fmt](https://github.com/nix-community/nixpkgs-fmt) - nixpkgs-fmt is a Nix code formatter for nixpkgs.
- [ocamlformat](https://github.com/ocaml-ppx/ocamlformat) - Auto-formatter for OCaml code.
+- [perlimports](https://github.com/perl-ide/App-perlimports) - Make implicit Perl imports explicit
- [pg_format](https://github.com/darold/pgFormatter) - PostgreSQL SQL syntax beautifier.
- [prettier](https://github.com/prettier/prettier) - Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.
- [prettierd](https://github.com/fsouza/prettierd) - prettier, as a daemon, for ludicrous formatting speed.
diff --git a/lua/conform/formatters/perlimports.lua b/lua/conform/formatters/perlimports.lua
new file mode 100644
index 0000000..d3e520c
--- /dev/null
+++ b/lua/conform/formatters/perlimports.lua
@@ -0,0 +1,13 @@
+---@type conform.FileFormatterConfig
+return {
+ meta = {
+ url = "https://github.com/perl-ide/App-perlimports",
+ description = "Make implicit Perl imports explicit",
+ },
+ command = "perlimports",
+ args = {
+ "--read-stdin",
+ "--filename",
+ "$FILENAME",
+ },
+}