plugins.none-ls.sources.diagnostics.reek.enable

Whether to enable the reek diagnostics source for none-ls.

Type: boolean

Default: false

Example: true

Declared by:

plugins.none-ls.sources.diagnostics.reek.package

Package to use for reek.

Currently not packaged in nixpkgs. Either set this to null and install reek outside of nix, or set this to a custom nix package.

Type: null or package

Declared by:

plugins.none-ls.sources.diagnostics.reek.settings

Options provided to the require('null-ls').builtins.diagnostics.reek.with function.

See upstream’s BUILTIN_CONFIG documentation.

Type: null or lua code string or attribute set of anything

Default: null

Example:

{
  disabled_filetypes = [
    "lua"
  ];
  extra_args = [
    "-i"
    "2"
    "-ci"
  ];
  extra_filetypes = [
    "toml"
  ];
}

Declared by: