@savvy-web/silk 3.11.6 → 3.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changesets-changelog.cjs +72 -63
- package/changesets-changelog.d.cts +12 -2
- package/changesets-changelog.d.ts +12 -2
- package/changesets-changelog.js +72 -63
- package/changesets-markdownlint.cjs +72 -63
- package/changesets-markdownlint.d.cts +18 -8
- package/changesets-markdownlint.d.ts +18 -8
- package/changesets-markdownlint.js +72 -63
- package/changesets-remark.d.ts +14 -15
- package/changesets.d.ts +6 -7
- package/commitlint-formatter.d.ts +9 -9
- package/commitlint-prompt.d.ts +18 -18
- package/commitlint-static.d.ts +17 -17
- package/commitlint.d.ts +18 -18
- package/lint.d.ts +58 -58
- package/package.json +7 -7
- package/tsconfig/node/dist/tsconfig.tsbuildinfo +1 -1
package/changesets-remark.d.ts
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
import { Changesets } from "@savvy-web/silk-effects";
|
|
2
2
|
//#region src/changesets/remark.d.ts
|
|
3
|
-
declare const AggregateDependencyTablesPlugin: typeof Changesets.AggregateDependencyTablesPlugin;
|
|
4
|
-
declare const ContributorFootnotesPlugin: typeof Changesets.ContributorFootnotesPlugin;
|
|
5
|
-
declare const DeduplicateItemsPlugin: typeof Changesets.DeduplicateItemsPlugin;
|
|
6
|
-
declare const IssueLinkRefsPlugin: typeof Changesets.IssueLinkRefsPlugin;
|
|
7
|
-
declare const MergeSectionsPlugin: typeof Changesets.MergeSectionsPlugin;
|
|
8
|
-
declare const NormalizeFormatPlugin: typeof Changesets.NormalizeFormatPlugin;
|
|
9
|
-
declare const ReorderSectionsPlugin: typeof Changesets.ReorderSectionsPlugin;
|
|
10
|
-
declare const SilkChangesetPreset: typeof Changesets.SilkChangesetPreset;
|
|
11
|
-
declare const SilkChangesetTransformPreset: typeof Changesets.SilkChangesetTransformPreset;
|
|
12
|
-
declare const ContentStructureRule: typeof Changesets.ContentStructureRule;
|
|
13
|
-
declare const DependencyTableFormatRule: typeof Changesets.DependencyTableFormatRule;
|
|
14
|
-
declare const HeadingHierarchyRule: typeof Changesets.HeadingHierarchyRule;
|
|
15
|
-
declare const RequiredSectionsRule: typeof Changesets.RequiredSectionsRule;
|
|
16
|
-
declare const UncategorizedContentRule: typeof Changesets.UncategorizedContentRule;
|
|
3
|
+
export declare const AggregateDependencyTablesPlugin: typeof Changesets.AggregateDependencyTablesPlugin;
|
|
4
|
+
export declare const ContributorFootnotesPlugin: typeof Changesets.ContributorFootnotesPlugin;
|
|
5
|
+
export declare const DeduplicateItemsPlugin: typeof Changesets.DeduplicateItemsPlugin;
|
|
6
|
+
export declare const IssueLinkRefsPlugin: typeof Changesets.IssueLinkRefsPlugin;
|
|
7
|
+
export declare const MergeSectionsPlugin: typeof Changesets.MergeSectionsPlugin;
|
|
8
|
+
export declare const NormalizeFormatPlugin: typeof Changesets.NormalizeFormatPlugin;
|
|
9
|
+
export declare const ReorderSectionsPlugin: typeof Changesets.ReorderSectionsPlugin;
|
|
10
|
+
export declare const SilkChangesetPreset: typeof Changesets.SilkChangesetPreset;
|
|
11
|
+
export declare const SilkChangesetTransformPreset: typeof Changesets.SilkChangesetTransformPreset;
|
|
12
|
+
export declare const ContentStructureRule: typeof Changesets.ContentStructureRule;
|
|
13
|
+
export declare const DependencyTableFormatRule: typeof Changesets.DependencyTableFormatRule;
|
|
14
|
+
export declare const HeadingHierarchyRule: typeof Changesets.HeadingHierarchyRule;
|
|
15
|
+
export declare const RequiredSectionsRule: typeof Changesets.RequiredSectionsRule;
|
|
16
|
+
export declare const UncategorizedContentRule: typeof Changesets.UncategorizedContentRule;
|
|
17
17
|
//#endregion
|
|
18
|
-
export { AggregateDependencyTablesPlugin, ContentStructureRule, ContributorFootnotesPlugin, DeduplicateItemsPlugin, DependencyTableFormatRule, HeadingHierarchyRule, IssueLinkRefsPlugin, MergeSectionsPlugin, NormalizeFormatPlugin, ReorderSectionsPlugin, RequiredSectionsRule, SilkChangesetPreset, SilkChangesetTransformPreset, UncategorizedContentRule };
|
|
19
18
|
//# sourceMappingURL=changesets-remark.d.ts.map
|
package/changesets.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { Changesets } from "@savvy-web/silk-effects";
|
|
2
2
|
//#region src/changesets/index.d.ts
|
|
3
|
-
type LintMessage = Changesets.LintMessage;
|
|
4
|
-
declare const Categories: typeof Changesets.Categories;
|
|
5
|
-
declare const Changelog: typeof Changesets.Changelog;
|
|
6
|
-
declare const DependencyTable: typeof Changesets.DependencyTable;
|
|
7
|
-
declare const ChangesetLinter: typeof Changesets.ChangesetLinter;
|
|
8
|
-
declare const ChangelogTransformer: typeof Changesets.ChangelogTransformer;
|
|
3
|
+
export type LintMessage = Changesets.LintMessage;
|
|
4
|
+
export declare const Categories: typeof Changesets.Categories;
|
|
5
|
+
export declare const Changelog: typeof Changesets.Changelog;
|
|
6
|
+
export declare const DependencyTable: typeof Changesets.DependencyTable;
|
|
7
|
+
export declare const ChangesetLinter: typeof Changesets.ChangesetLinter;
|
|
8
|
+
export declare const ChangelogTransformer: typeof Changesets.ChangelogTransformer;
|
|
9
9
|
//#endregion
|
|
10
|
-
export { Categories, Changelog, ChangelogTransformer, ChangesetLinter, DependencyTable, LintMessage };
|
|
11
10
|
//# sourceMappingURL=changesets.d.ts.map
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Commitlint } from "@savvy-web/silk-effects";
|
|
2
2
|
//#region src/commitlint/formatter.d.ts
|
|
3
|
-
type FormatterResult = Commitlint.FormatterResult;
|
|
4
|
-
type LintOutcome = Commitlint.LintOutcome;
|
|
5
|
-
type RuleResult = Commitlint.RuleResult;
|
|
6
|
-
declare const format: typeof Commitlint.format;
|
|
7
|
-
declare const ERROR_EXPLANATIONS: Record<string, string>;
|
|
8
|
-
declare const ERROR_SUGGESTIONS: Record<string, string>;
|
|
9
|
-
declare const getExplanation: typeof Commitlint.getExplanation;
|
|
10
|
-
declare const getSuggestion: typeof Commitlint.getSuggestion;
|
|
3
|
+
export type FormatterResult = Commitlint.FormatterResult;
|
|
4
|
+
export type LintOutcome = Commitlint.LintOutcome;
|
|
5
|
+
export type RuleResult = Commitlint.RuleResult;
|
|
6
|
+
export declare const format: typeof Commitlint.format;
|
|
7
|
+
export declare const ERROR_EXPLANATIONS: Record<string, string>;
|
|
8
|
+
export declare const ERROR_SUGGESTIONS: Record<string, string>;
|
|
9
|
+
export declare const getExplanation: typeof Commitlint.getExplanation;
|
|
10
|
+
export declare const getSuggestion: typeof Commitlint.getSuggestion;
|
|
11
11
|
declare const _default: typeof Commitlint.format;
|
|
12
12
|
//#endregion
|
|
13
|
-
export {
|
|
13
|
+
export { _default as default };
|
|
14
14
|
//# sourceMappingURL=commitlint-formatter.d.ts.map
|
package/commitlint-prompt.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import { Commitlint } from "@savvy-web/silk-effects";
|
|
2
2
|
//#region src/commitlint/prompt.d.ts
|
|
3
|
-
type CommitType = Commitlint.CommitType;
|
|
4
|
-
type PromptConfigOptions = Commitlint.PromptConfigOptions;
|
|
5
|
-
type PromptQuestion = Commitlint.PromptQuestion;
|
|
6
|
-
type ResolvedPromptConfig = Commitlint.ResolvedPromptConfig;
|
|
7
|
-
type TypeEnumEntry = Commitlint.TypeEnumEntry;
|
|
8
|
-
type Inquirer = Commitlint.Inquirer;
|
|
9
|
-
type PrompterOptions = Commitlint.PrompterOptions;
|
|
10
|
-
type Question = Commitlint.Question;
|
|
11
|
-
declare const COMMIT_TYPES: readonly ["ai", "build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "release", "revert", "style", "tdd", "test"];
|
|
12
|
-
declare const TYPE_EMOJIS: Record<"ai" | "build" | "chore" | "ci" | "docs" | "feat" | "fix" | "perf" | "refactor" | "release" | "revert" | "style" | "tdd" | "test", string>;
|
|
13
|
-
declare const TYPE_EMOJIS_UNICODE: Record<"ai" | "build" | "chore" | "ci" | "docs" | "feat" | "fix" | "perf" | "refactor" | "release" | "revert" | "style" | "tdd" | "test", string>;
|
|
14
|
-
declare const getTypeEmoji: typeof Commitlint.getTypeEmoji;
|
|
15
|
-
declare const createPromptConfig: typeof Commitlint.createPromptConfig;
|
|
16
|
-
declare const createTypeEnum: typeof Commitlint.createTypeEnum;
|
|
17
|
-
declare const defaultPromptConfig: Commitlint.ResolvedPromptConfig;
|
|
18
|
-
declare const emojiPromptConfig: Commitlint.ResolvedPromptConfig;
|
|
19
|
-
declare const prompter: typeof Commitlint.prompter;
|
|
3
|
+
export type CommitType = Commitlint.CommitType;
|
|
4
|
+
export type PromptConfigOptions = Commitlint.PromptConfigOptions;
|
|
5
|
+
export type PromptQuestion = Commitlint.PromptQuestion;
|
|
6
|
+
export type ResolvedPromptConfig = Commitlint.ResolvedPromptConfig;
|
|
7
|
+
export type TypeEnumEntry = Commitlint.TypeEnumEntry;
|
|
8
|
+
export type Inquirer = Commitlint.Inquirer;
|
|
9
|
+
export type PrompterOptions = Commitlint.PrompterOptions;
|
|
10
|
+
export type Question = Commitlint.Question;
|
|
11
|
+
export declare const COMMIT_TYPES: readonly ["ai", "build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "release", "revert", "style", "tdd", "test"];
|
|
12
|
+
export declare const TYPE_EMOJIS: Record<"ai" | "build" | "chore" | "ci" | "docs" | "feat" | "fix" | "perf" | "refactor" | "release" | "revert" | "style" | "tdd" | "test", string>;
|
|
13
|
+
export declare const TYPE_EMOJIS_UNICODE: Record<"ai" | "build" | "chore" | "ci" | "docs" | "feat" | "fix" | "perf" | "refactor" | "release" | "revert" | "style" | "tdd" | "test", string>;
|
|
14
|
+
export declare const getTypeEmoji: typeof Commitlint.getTypeEmoji;
|
|
15
|
+
export declare const createPromptConfig: typeof Commitlint.createPromptConfig;
|
|
16
|
+
export declare const createTypeEnum: typeof Commitlint.createTypeEnum;
|
|
17
|
+
export declare const defaultPromptConfig: Commitlint.ResolvedPromptConfig;
|
|
18
|
+
export declare const emojiPromptConfig: Commitlint.ResolvedPromptConfig;
|
|
19
|
+
export declare const prompter: typeof Commitlint.prompter;
|
|
20
20
|
declare const _default: Commitlint.ResolvedPromptConfig;
|
|
21
21
|
//#endregion
|
|
22
|
-
export {
|
|
22
|
+
export { _default as default };
|
|
23
23
|
//# sourceMappingURL=commitlint-prompt.d.ts.map
|
package/commitlint-static.d.ts
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { Commitlint } from "@savvy-web/silk-effects";
|
|
2
2
|
//#region src/commitlint/static.d.ts
|
|
3
|
-
type CommitType = Commitlint.CommitType;
|
|
4
|
-
type CommitTypeDefinition = Commitlint.CommitTypeDefinition;
|
|
5
|
-
type CommitlintPlugin = Commitlint.CommitlintPlugin;
|
|
6
|
-
type CommitlintUserConfig = Commitlint.CommitlintUserConfig;
|
|
7
|
-
type PromptConfig = Commitlint.PromptConfig;
|
|
8
|
-
type PromptSettings = Commitlint.PromptSettings;
|
|
9
|
-
type RuleApplicability = Commitlint.RuleApplicability;
|
|
10
|
-
type RuleConfigTuple = Commitlint.RuleConfigTuple;
|
|
11
|
-
type RuleSeverity = Commitlint.RuleSeverity;
|
|
12
|
-
type RulesConfig = Commitlint.RulesConfig;
|
|
13
|
-
declare const COMMIT_TYPES: readonly ["ai", "build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "release", "revert", "style", "tdd", "test"];
|
|
14
|
-
declare const COMMIT_TYPE_DEFINITIONS: readonly Commitlint.CommitTypeDefinition[];
|
|
15
|
-
declare const DCO_SIGNOFF_TEXT = "Signed-off-by:";
|
|
16
|
-
declare const DEFAULT_BODY_MAX_LINE_LENGTH = 300;
|
|
17
|
-
declare const TDD_SCOPE_PATTERN: RegExp;
|
|
18
|
-
declare const TDD_STATES: readonly ["spike", "red", "green", "refactor"];
|
|
3
|
+
export type CommitType = Commitlint.CommitType;
|
|
4
|
+
export type CommitTypeDefinition = Commitlint.CommitTypeDefinition;
|
|
5
|
+
export type CommitlintPlugin = Commitlint.CommitlintPlugin;
|
|
6
|
+
export type CommitlintUserConfig = Commitlint.CommitlintUserConfig;
|
|
7
|
+
export type PromptConfig = Commitlint.PromptConfig;
|
|
8
|
+
export type PromptSettings = Commitlint.PromptSettings;
|
|
9
|
+
export type RuleApplicability = Commitlint.RuleApplicability;
|
|
10
|
+
export type RuleConfigTuple = Commitlint.RuleConfigTuple;
|
|
11
|
+
export type RuleSeverity = Commitlint.RuleSeverity;
|
|
12
|
+
export type RulesConfig = Commitlint.RulesConfig;
|
|
13
|
+
export declare const COMMIT_TYPES: readonly ["ai", "build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "release", "revert", "style", "tdd", "test"];
|
|
14
|
+
export declare const COMMIT_TYPE_DEFINITIONS: readonly Commitlint.CommitTypeDefinition[];
|
|
15
|
+
export declare const DCO_SIGNOFF_TEXT = "Signed-off-by:";
|
|
16
|
+
export declare const DEFAULT_BODY_MAX_LINE_LENGTH = 300;
|
|
17
|
+
export declare const TDD_SCOPE_PATTERN: RegExp;
|
|
18
|
+
export declare const TDD_STATES: readonly ["spike", "red", "green", "refactor"];
|
|
19
19
|
declare const _default: Commitlint.CommitlintUserConfig;
|
|
20
20
|
//#endregion
|
|
21
|
-
export {
|
|
21
|
+
export { _default as default };
|
|
22
22
|
//# sourceMappingURL=commitlint-static.d.ts.map
|
package/commitlint.d.ts
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { Commitlint } from "@savvy-web/silk-effects";
|
|
2
2
|
//#region src/commitlint/index.d.ts
|
|
3
|
-
type CommitType = Commitlint.CommitType;
|
|
4
|
-
type ReleaseFormat = Commitlint.ReleaseFormat;
|
|
5
|
-
type CommitTypeDefinition = Commitlint.CommitTypeDefinition;
|
|
6
|
-
type CommitlintPlugin = Commitlint.CommitlintPlugin;
|
|
7
|
-
type PromptConfig = Commitlint.PromptConfig;
|
|
8
|
-
type PromptSettings = Commitlint.PromptSettings;
|
|
9
|
-
type RuleApplicability = Commitlint.RuleApplicability;
|
|
10
|
-
type RuleConfigTuple = Commitlint.RuleConfigTuple;
|
|
11
|
-
type RuleSeverity = Commitlint.RuleSeverity;
|
|
12
|
-
type RulesConfig = Commitlint.RulesConfig;
|
|
13
|
-
interface CommitlintUserConfig extends Commitlint.CommitlintUserConfig {}
|
|
14
|
-
type ConfigOptions = Commitlint.ConfigOptions;
|
|
15
|
-
declare const CommitlintConfig: {
|
|
3
|
+
export type CommitType = Commitlint.CommitType;
|
|
4
|
+
export type ReleaseFormat = Commitlint.ReleaseFormat;
|
|
5
|
+
export type CommitTypeDefinition = Commitlint.CommitTypeDefinition;
|
|
6
|
+
export type CommitlintPlugin = Commitlint.CommitlintPlugin;
|
|
7
|
+
export type PromptConfig = Commitlint.PromptConfig;
|
|
8
|
+
export type PromptSettings = Commitlint.PromptSettings;
|
|
9
|
+
export type RuleApplicability = Commitlint.RuleApplicability;
|
|
10
|
+
export type RuleConfigTuple = Commitlint.RuleConfigTuple;
|
|
11
|
+
export type RuleSeverity = Commitlint.RuleSeverity;
|
|
12
|
+
export type RulesConfig = Commitlint.RulesConfig;
|
|
13
|
+
export interface CommitlintUserConfig extends Commitlint.CommitlintUserConfig {}
|
|
14
|
+
export type ConfigOptions = Commitlint.ConfigOptions;
|
|
15
|
+
export declare const CommitlintConfig: {
|
|
16
16
|
silk(options?: Commitlint.ConfigOptions): CommitlintUserConfig;
|
|
17
17
|
};
|
|
18
|
-
declare const COMMIT_TYPES: readonly ["ai", "build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "release", "revert", "style", "tdd", "test"];
|
|
19
|
-
declare const COMMIT_TYPE_DEFINITIONS: readonly Commitlint.CommitTypeDefinition[];
|
|
20
|
-
declare const TDD_SCOPE_PATTERN: RegExp;
|
|
21
|
-
declare const TDD_STATES: readonly ["spike", "red", "green", "refactor"];
|
|
18
|
+
export declare const COMMIT_TYPES: readonly ["ai", "build", "chore", "ci", "docs", "feat", "fix", "perf", "refactor", "release", "revert", "style", "tdd", "test"];
|
|
19
|
+
export declare const COMMIT_TYPE_DEFINITIONS: readonly Commitlint.CommitTypeDefinition[];
|
|
20
|
+
export declare const TDD_SCOPE_PATTERN: RegExp;
|
|
21
|
+
export declare const TDD_STATES: readonly ["spike", "red", "green", "refactor"];
|
|
22
22
|
//#endregion
|
|
23
|
-
export {
|
|
23
|
+
export { CommitlintConfig as default };
|
|
24
24
|
//# sourceMappingURL=commitlint.d.ts.map
|
package/lint.d.ts
CHANGED
|
@@ -1,65 +1,65 @@
|
|
|
1
1
|
import { ConfigDiscovery, ConfigLocation, Lint } from "@savvy-web/silk-effects";
|
|
2
2
|
//#region src/lint/index.d.ts
|
|
3
|
-
declare const Handler: typeof Lint.Handler;
|
|
4
|
-
type Handler = typeof Lint.Handler;
|
|
5
|
-
declare const Biome: typeof Lint.Biome;
|
|
6
|
-
type Biome = typeof Lint.Biome;
|
|
7
|
-
declare const Markdown: typeof Lint.Markdown;
|
|
8
|
-
type Markdown = typeof Lint.Markdown;
|
|
9
|
-
declare const PackageJson: typeof Lint.PackageJson;
|
|
10
|
-
type PackageJson = typeof Lint.PackageJson;
|
|
11
|
-
declare const PnpmWorkspace: typeof Lint.PnpmWorkspace;
|
|
12
|
-
type PnpmWorkspace = typeof Lint.PnpmWorkspace;
|
|
13
|
-
type PnpmWorkspaceContent = Lint.PnpmWorkspaceContent;
|
|
14
|
-
declare const ShellScripts: typeof Lint.ShellScripts;
|
|
15
|
-
type ShellScripts = typeof Lint.ShellScripts;
|
|
16
|
-
declare const TypeScript: typeof Lint.TypeScript;
|
|
17
|
-
type TypeScript = typeof Lint.TypeScript;
|
|
18
|
-
type TypeScriptCompiler = Lint.TypeScriptCompiler;
|
|
19
|
-
declare const Yaml: typeof Lint.Yaml;
|
|
20
|
-
type Yaml = typeof Lint.Yaml;
|
|
21
|
-
declare const createConfig: typeof Lint.createConfig;
|
|
22
|
-
type CreateConfigOptions = Lint.CreateConfigOptions;
|
|
23
|
-
type LintStagedConfig = Lint.LintStagedConfig;
|
|
24
|
-
declare const Preset: {
|
|
3
|
+
export declare const Handler: typeof Lint.Handler;
|
|
4
|
+
export type Handler = typeof Lint.Handler;
|
|
5
|
+
export declare const Biome: typeof Lint.Biome;
|
|
6
|
+
export type Biome = typeof Lint.Biome;
|
|
7
|
+
export declare const Markdown: typeof Lint.Markdown;
|
|
8
|
+
export type Markdown = typeof Lint.Markdown;
|
|
9
|
+
export declare const PackageJson: typeof Lint.PackageJson;
|
|
10
|
+
export type PackageJson = typeof Lint.PackageJson;
|
|
11
|
+
export declare const PnpmWorkspace: typeof Lint.PnpmWorkspace;
|
|
12
|
+
export type PnpmWorkspace = typeof Lint.PnpmWorkspace;
|
|
13
|
+
export type PnpmWorkspaceContent = Lint.PnpmWorkspaceContent;
|
|
14
|
+
export declare const ShellScripts: typeof Lint.ShellScripts;
|
|
15
|
+
export type ShellScripts = typeof Lint.ShellScripts;
|
|
16
|
+
export declare const TypeScript: typeof Lint.TypeScript;
|
|
17
|
+
export type TypeScript = typeof Lint.TypeScript;
|
|
18
|
+
export type TypeScriptCompiler = Lint.TypeScriptCompiler;
|
|
19
|
+
export declare const Yaml: typeof Lint.Yaml;
|
|
20
|
+
export type Yaml = typeof Lint.Yaml;
|
|
21
|
+
export declare const createConfig: typeof Lint.createConfig;
|
|
22
|
+
export type CreateConfigOptions = Lint.CreateConfigOptions;
|
|
23
|
+
export type LintStagedConfig = Lint.LintStagedConfig;
|
|
24
|
+
export declare const Preset: {
|
|
25
25
|
minimal(extend?: Lint.PresetExtendOptions): LintStagedConfig;
|
|
26
26
|
standard(extend?: Lint.PresetExtendOptions): LintStagedConfig;
|
|
27
27
|
silk(extend?: Lint.PresetExtendOptions): LintStagedConfig;
|
|
28
28
|
get(name: "minimal" | "standard" | "silk", extend?: Lint.PresetExtendOptions): LintStagedConfig;
|
|
29
29
|
};
|
|
30
|
-
type Preset = typeof Preset;
|
|
31
|
-
type PresetExtendOptions = Lint.PresetExtendOptions;
|
|
32
|
-
type BaseHandlerOptions = Lint.BaseHandlerOptions;
|
|
33
|
-
type BiomeOptions = Lint.BiomeOptions;
|
|
34
|
-
type LintStagedEntry = Lint.LintStagedEntry;
|
|
35
|
-
type LintStagedHandler = Lint.LintStagedHandler;
|
|
36
|
-
type MarkdownOptions = Lint.MarkdownOptions;
|
|
37
|
-
type PackageJsonOptions = Lint.PackageJsonOptions;
|
|
38
|
-
type PnpmWorkspaceOptions = Lint.PnpmWorkspaceOptions;
|
|
39
|
-
type PresetType = Lint.PresetType;
|
|
40
|
-
type ShellScriptsOptions = Lint.ShellScriptsOptions;
|
|
41
|
-
type TypeScriptOptions = Lint.TypeScriptOptions;
|
|
42
|
-
type YamlOptions = Lint.YamlOptions;
|
|
43
|
-
declare const Command: typeof Lint.Command;
|
|
44
|
-
type PackageManager = Lint.PackageManager;
|
|
45
|
-
type ToolSearchResult = Lint.ToolSearchResult;
|
|
46
|
-
declare const Filter: typeof Lint.Filter;
|
|
47
|
-
declare const getWorkspaceRoot: typeof Lint.getWorkspaceRoot;
|
|
48
|
-
declare const getWorkspacePackages: typeof Lint.getWorkspacePackages;
|
|
49
|
-
declare const getWorkspacePackagePaths: typeof Lint.getWorkspacePackagePaths;
|
|
50
|
-
declare const isWorkspacePackagePath: typeof Lint.isWorkspacePackagePath;
|
|
51
|
-
declare const resetWorkspaceCache: typeof Lint.resetWorkspaceCache;
|
|
52
|
-
type WorkspacePackageInfo = Lint.WorkspacePackageInfo;
|
|
53
|
-
declare const DEFAULT_CONFIG_PATH = "lib/configs/lint-staged.config.ts";
|
|
54
|
-
declare const HUSKY_HOOK_PATH = ".husky/pre-commit";
|
|
55
|
-
declare const LegacySavvyLintHygieneDef: import("@effected/templates").SectionId;
|
|
56
|
-
declare const MARKDOWNLINT_CONFIG_PATH = "lib/configs/.markdownlint-cli2.jsonc";
|
|
57
|
-
declare const POST_CHECKOUT_HOOK_PATH = ".husky/post-checkout";
|
|
58
|
-
declare const POST_MERGE_HOOK_PATH = ".husky/post-merge";
|
|
59
|
-
declare const SavvyLintSectionDef: import("@effected/templates").SectionId;
|
|
60
|
-
declare const generateManagedContent: typeof Lint.generateManagedContent;
|
|
61
|
-
declare const savvyLintBlock: typeof Lint.savvyLintBlock;
|
|
62
|
-
declare const MARKDOWNLINT_CONFIG: {
|
|
30
|
+
export type Preset = typeof Preset;
|
|
31
|
+
export type PresetExtendOptions = Lint.PresetExtendOptions;
|
|
32
|
+
export type BaseHandlerOptions = Lint.BaseHandlerOptions;
|
|
33
|
+
export type BiomeOptions = Lint.BiomeOptions;
|
|
34
|
+
export type LintStagedEntry = Lint.LintStagedEntry;
|
|
35
|
+
export type LintStagedHandler = Lint.LintStagedHandler;
|
|
36
|
+
export type MarkdownOptions = Lint.MarkdownOptions;
|
|
37
|
+
export type PackageJsonOptions = Lint.PackageJsonOptions;
|
|
38
|
+
export type PnpmWorkspaceOptions = Lint.PnpmWorkspaceOptions;
|
|
39
|
+
export type PresetType = Lint.PresetType;
|
|
40
|
+
export type ShellScriptsOptions = Lint.ShellScriptsOptions;
|
|
41
|
+
export type TypeScriptOptions = Lint.TypeScriptOptions;
|
|
42
|
+
export type YamlOptions = Lint.YamlOptions;
|
|
43
|
+
export declare const Command: typeof Lint.Command;
|
|
44
|
+
export type PackageManager = Lint.PackageManager;
|
|
45
|
+
export type ToolSearchResult = Lint.ToolSearchResult;
|
|
46
|
+
export declare const Filter: typeof Lint.Filter;
|
|
47
|
+
export declare const getWorkspaceRoot: typeof Lint.getWorkspaceRoot;
|
|
48
|
+
export declare const getWorkspacePackages: typeof Lint.getWorkspacePackages;
|
|
49
|
+
export declare const getWorkspacePackagePaths: typeof Lint.getWorkspacePackagePaths;
|
|
50
|
+
export declare const isWorkspacePackagePath: typeof Lint.isWorkspacePackagePath;
|
|
51
|
+
export declare const resetWorkspaceCache: typeof Lint.resetWorkspaceCache;
|
|
52
|
+
export type WorkspacePackageInfo = Lint.WorkspacePackageInfo;
|
|
53
|
+
export declare const DEFAULT_CONFIG_PATH = "lib/configs/lint-staged.config.ts";
|
|
54
|
+
export declare const HUSKY_HOOK_PATH = ".husky/pre-commit";
|
|
55
|
+
export declare const LegacySavvyLintHygieneDef: import("@effected/templates").SectionId;
|
|
56
|
+
export declare const MARKDOWNLINT_CONFIG_PATH = "lib/configs/.markdownlint-cli2.jsonc";
|
|
57
|
+
export declare const POST_CHECKOUT_HOOK_PATH = ".husky/post-checkout";
|
|
58
|
+
export declare const POST_MERGE_HOOK_PATH = ".husky/post-merge";
|
|
59
|
+
export declare const SavvyLintSectionDef: import("@effected/templates").SectionId;
|
|
60
|
+
export declare const generateManagedContent: typeof Lint.generateManagedContent;
|
|
61
|
+
export declare const savvyLintBlock: typeof Lint.savvyLintBlock;
|
|
62
|
+
export declare const MARKDOWNLINT_CONFIG: {
|
|
63
63
|
readonly default: true;
|
|
64
64
|
readonly MD001: true;
|
|
65
65
|
readonly MD002: true;
|
|
@@ -135,8 +135,8 @@ declare const MARKDOWNLINT_CONFIG: {
|
|
|
135
135
|
readonly "changeset-uncategorized-content": false;
|
|
136
136
|
readonly "changeset-dependency-table-format": false;
|
|
137
137
|
};
|
|
138
|
-
declare const MARKDOWNLINT_SCHEMA: "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.22.0/schema/markdownlint-cli2-config-schema.json";
|
|
139
|
-
declare const MARKDOWNLINT_TEMPLATE: {
|
|
138
|
+
export declare const MARKDOWNLINT_SCHEMA: "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.22.0/schema/markdownlint-cli2-config-schema.json";
|
|
139
|
+
export declare const MARKDOWNLINT_TEMPLATE: {
|
|
140
140
|
readonly $schema: "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.22.0/schema/markdownlint-cli2-config-schema.json";
|
|
141
141
|
readonly globs: readonly ["**/*.{md,mdx}"];
|
|
142
142
|
readonly fix: true;
|
|
@@ -222,5 +222,5 @@ declare const MARKDOWNLINT_TEMPLATE: {
|
|
|
222
222
|
};
|
|
223
223
|
};
|
|
224
224
|
//#endregion
|
|
225
|
-
export {
|
|
225
|
+
export { ConfigDiscovery, type ConfigLocation };
|
|
226
226
|
//# sourceMappingURL=lint.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@savvy-web/silk",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The single Silk Suite dev-tooling package — changeset, commitlint, lint, and biome conventions",
|
|
6
6
|
"homepage": "https://github.com/savvy-web/systems/tree/main/packages/silk",
|
|
@@ -77,21 +77,21 @@
|
|
|
77
77
|
"@effected/commands": "^0.5.0",
|
|
78
78
|
"@effected/git": "^0.10.0",
|
|
79
79
|
"@effected/templates": "^0.4.0",
|
|
80
|
-
"@effected/workspaces": "^0.
|
|
80
|
+
"@effected/workspaces": "^0.19.0",
|
|
81
81
|
"@savvy-web/changelog": "0.1.1",
|
|
82
|
-
"@savvy-web/cli": "2.
|
|
83
|
-
"@savvy-web/mcp": "2.
|
|
84
|
-
"@savvy-web/silk-effects": "7.
|
|
82
|
+
"@savvy-web/cli": "2.10.0",
|
|
83
|
+
"@savvy-web/mcp": "2.7.0",
|
|
84
|
+
"@savvy-web/silk-effects": "7.4.0",
|
|
85
85
|
"effect": "4.0.0-rc.109",
|
|
86
86
|
"semver": "^7.8.5"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
|
-
"@biomejs/biome": "2.5.
|
|
89
|
+
"@biomejs/biome": "2.5.12",
|
|
90
90
|
"@changesets/cli": "^3.0.1",
|
|
91
91
|
"@commitlint/cli": "^21.2.2",
|
|
92
92
|
"@commitlint/config-conventional": "^21.2.2",
|
|
93
93
|
"@types/bun": "^1.4.0",
|
|
94
|
-
"@types/node": "^26.4.
|
|
94
|
+
"@types/node": "^26.4.1",
|
|
95
95
|
"@vitest/coverage-istanbul": "^4.1.11",
|
|
96
96
|
"@vitest/coverage-v8": "^4.1.11",
|
|
97
97
|
"husky": "^9.1.7",
|