diff --git a/docs-preview-749/options.html b/docs-preview-749/options.html index 3ec8aa0f..dd867ed9 100644 --- a/docs-preview-749/options.html +++ b/docs-preview-749/options.html @@ -5624,6 +5624,315 @@ boolean
Example:
true
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.lint_after_save
+
+
+Whether to enable autocmd to lint after each save.
+ +Type: +boolean
+ +Default:
+true
Example:
+true
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters
+
+
+Linter configurations. Builtin linters will be updated and not
+replaced, but note that this is not a deep extend operation, i.e. if
+you define an env option, it will replace the entire env table
+provided by the builtin (if it exists).
Type: +attribute set of (submodule)
+ +Default:
+{ }
Example:
''
+ {
+ phpcs = {
+ args = ["-q" "--report-json" "-"];
+
+ # this will replace the builtin's env table if it exists
+ env = {
+ ENV_VAR = "something";
+ };
+ };
+ }
+''
+
+
+Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.append_fname
+
+
+Automatically add the current file name to the commands arguments. Only +has an effect if stdin is false
+ +Type: +null or boolean
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.args
+
+
+Arguments to pass
+ +Type: +null or (list of (string or (luaInline)))
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.cmd
+
+
+Command of the linter
+ +Type: +null or string
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.cwd
+
+
+Working directory of the linter
+ +Type: +null or string
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.env
+
+
+Environment variables to use
+ +Type: +null or (attribute set of string)
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.ignore_exitcode
+
+
+Declares if exit code != 1 should be ignored or result in a warning.
+ +Type: +null or boolean
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.name
+
+
+Name of the linter
+ +Type: +null or string
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.parser
+
+
+Parser function
+ +Type: +null or (luaInline)
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.stdin
+
+
+Send content via stdin.
+ +Type: +null or boolean
+ +Default:
+null
Declared by:
+
+
+<nvf/modules/plugins/diagnostics/nvim-lint/nvim-lint.nix>
+
+ |
vim.diagnostics.nvim-lint.linters.<name>.stream
+
+
+Result stream
+ +Type: +null or one of “stdout”, “stderr”, “both”
+ +Default:
+null
Declared by:
|
@@ -16352,13 +16661,13 @@ list of string
Markdown formatter to use +Markdown formatter to use. Type: -one of “denofmt”, “prettierd” +one of “deno_fmt”, “denofmt”, “prettierd”Default:
- "deno_fmt"
Declared by: |