aboutsummaryrefslogtreecommitdiffstats
path: root/tests/autoformat_doc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/autoformat_doc.lua')
-rw-r--r--tests/autoformat_doc.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/autoformat_doc.lua b/tests/autoformat_doc.lua
deleted file mode 100644
index 8c0761e..0000000
--- a/tests/autoformat_doc.lua
+++ /dev/null
@@ -1,20 +0,0 @@
-vim.api.nvim_create_autocmd("BufWritePre", {
- pattern = "*",
- callback = function(args)
- -- Disable autoformat on certain filetypes
- local ignore_filetypes = { "sql", "java" }
- if vim.tbl_contains(ignore_filetypes, vim.bo[args.buf].filetype) then
- return
- end
- -- Disable with a global or buffer-local variable
- if vim.g.disable_autoformat or vim.b[args.buf].disable_autoformat then
- return
- end
- -- Disable autoformat for files in a certain path
- local bufname = vim.api.nvim_buf_get_name(args.buf)
- if bufname:match("/node_modules/") then
- return
- end
- require("conform").format({ timeout_ms = 500, lsp_fallback = true, buf = args.buf })
- end,
-})