mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-12-08 21:23:53 +00:00
* language/python: allow multiple formatters * package: add prettier-plugin-astro * language/astro: fix prettier, remove prettierd * package: add prettier-plugin-svelte * language/svelte: fix prettier, remove prettierd * languages: allow listOf format.type * deprecations: add warnings for removed format options * ruby: remove unused variable * nix: fix outdated references to format.package * docs: update release note * treewide: warn deprecation in singleOrListOf * conform: add definitions for setupOpts.formatters
14 lines
511 B
Nix
14 lines
511 B
Nix
{
|
|
lib,
|
|
self,
|
|
}: let
|
|
typesDag = import ./dag.nix {inherit lib;};
|
|
typesPlugin = import ./plugins.nix {inherit lib self;};
|
|
typesLanguage = import ./languages.nix {inherit lib;};
|
|
customTypes = import ./custom.nix {inherit lib;};
|
|
in {
|
|
inherit (typesDag) dagOf;
|
|
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
|
|
inherit (typesLanguage) diagnostics mkGrammarOption;
|
|
inherit (customTypes) char hexColor mergelessListOf deprecatedSingleOrListOf;
|
|
}
|