Sign In

cspell

Package Overview
Dependencies
Maintainers
1
Versions
469
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cspell - npm Package Compare versions

Comparing version
9.6.3
to
9.6.4
dist/esm/application-DYABxs7R.js

Sorry, the diff of this file is too big to display

+120
import { a as SuggestionOptions, i as LinterCliOptions, n as DictionariesOptions, o as TraceOptions, r as LegacyOptions, t as BaseOptions } from "./options-CeDseSxu.js";
import { CheckTextInfo, FeatureFlags, IncludeExcludeFlag, SuggestionsForWordResult, TraceResult, TraceWordResult } from "cspell-lib";
import { CSpellReporter, RunResult } from "@cspell/cspell-types";
//#region src/config/options.d.ts
interface BaseConfigOptions {
/**
* The path to the configuration file to create / update.
* If not provided, a default file name will be used based on the format.
*/
config?: string;
/**
* The list of configuration files or dictionary packages to import.
* This can be a list of file paths, package names, or URLs.
*/
import?: string[];
/**
* The locale to use when spell checking (e.g., en, en-US, de).
*/
locale?: string;
/**
* Whether to add comments to the configuration file.
* - `true` - comments will be added to the configuration file.
* - `false` - no comments will be added.
* - `undefined` - the default behavior will be used based on the format.
*/
comments?: boolean;
/**
* Whether to remove all comments from the configuration file.
* - `true` - all comments will be removed.
* - `false` | `undefined` - no comments will be removed.
* @implies `comments: false`
*/
removeComments?: boolean;
/**
* Whether to add the schema reference to the configuration file.
* - `true` - the schema reference will be added / updated.
* - `false` - no schema reference will be added.
*/
schema?: boolean;
/**
* The list of dictionaries to enable in the configuration file.
* These are added to an existing configuration file or a new one.
* Existing dictionaries will not be removed.
*/
dictionary?: string[];
/**
* Whether to write the configuration to stdout instead of a file.
*/
stdout?: boolean;
}
interface InitOptions extends BaseConfigOptions {
/**
* The path where the configuration file will be written, it can be a file path or a URL.
* If not provided, a default file name will be used based on the format.
* The default will be `cspell.config.yaml` or `cspell.json` based on the format.
* @conflicts `config` - If `config` is provided, it will be used instead of `output`.
*/
output?: string;
/**
* The format of the configuration file.
* @conflicts `config` - If `config` is provided, the format will be inferred from the file extension.
*/
format?: "yaml" | "yml" | "json" | "jsonc";
}
//#endregion
//#region src/emitters/suggestionsEmitter.d.ts
interface TimedSuggestionsForWordResult extends SuggestionsForWordResult {
elapsedTimeMs?: number;
}
//#endregion
//#region src/dictionaries/listDictionaries.d.ts
interface ListDictionariesResult {
/**
* The name of the dictionary.
*/
name: string;
/**
* The description of the dictionary.
*/
description?: string | undefined;
/**
* The path to the dictionary file.
*/
path?: string | undefined;
/**
* True if the dictionary is enabled.
*/
enabled: boolean;
/**
* True if the dictionary is blocked.
*/
blocked: boolean;
/**
* The inline dictionaries supported by the dictionary.
*/
inline?: string[] | undefined;
/**
* the languages locales supported by the dictionary.
*/
locales?: string[] | undefined;
/**
* The file types supported by the dictionary.
*/
fileTypes?: string[] | undefined;
}
declare function listDictionaries(options: DictionariesOptions): Promise<ListDictionariesResult[]>;
//#endregion
//#region src/application.d.mts
type AppError = NodeJS.ErrnoException;
declare function lint(fileGlobs: string[], options: LinterCliOptions, reporter?: CSpellReporter): Promise<RunResult>;
declare function trace(words: string[], options: TraceOptions): AsyncIterableIterator<TraceWordResult>;
type CheckTextResult = CheckTextInfo;
declare function checkText(filename: string, options: BaseOptions & LegacyOptions): Promise<CheckTextResult>;
declare function suggestions(words: string[], options: SuggestionOptions): AsyncIterable<TimedSuggestionsForWordResult>;
declare function createInit(options: InitOptions): Promise<void>;
declare function parseApplicationFeatureFlags(flags: string[] | undefined): FeatureFlags;
//#endregion
export { checkText as a, parseApplicationFeatureFlags as c, listDictionaries as d, TraceResult as i, suggestions as l, CheckTextResult as n, createInit as o, IncludeExcludeFlag as r, lint as s, AppError as t, trace as u };
//# sourceMappingURL=application-i4vvz7Jf.d.ts.map
+17
-6

@@ -1,2 +0,2 @@

import { C as CheckFailed, S as ApplicationError, _ as padLeft, a as parseApplicationFeatureFlags, b as pruneAnsiTextStart, c as listDictionaries, d as validateUnitSize, f as unindent, g as tableToLines, i as lint, l as ReportChoicesAll, m as npmPackage, n as checkText, o as suggestions, p as DEFAULT_CACHE_LOCATION, r as createInit, s as trace, t as IncludeExcludeFlag, u as cvtLinterCliCommandOptionsToLinterCliOptions, v as padWidth, w as console, x as width, y as pruneAnsiTextEnd } from "./application-DxeSY2Ho.js";
import { C as ApplicationError, S as width, T as console, _ as padLeft, a as parseApplicationFeatureFlags, b as pruneAnsiTextEnd, c as listDictionaries, d as validateUnitSize, f as unindent, g as tableToLines, i as lint, l as ReportChoicesAll, m as npmPackage, n as checkText, o as suggestions, p as DEFAULT_CACHE_LOCATION, r as createInit, s as trace, t as IncludeExcludeFlag, u as cvtLinterCliCommandOptionsToLinterCliOptions, v as padWidth, w as CheckFailed, x as pruneAnsiTextStart, y as ansiWidth } from "./application-DYABxs7R.js";
import { Link } from "cspell-lib";

@@ -48,2 +48,13 @@ import chalk from "chalk";

/**
* Collects string values into an array, prefixing each value with the given prefix.
* @param prefix the prefix to add to each value.
* @returns a function that collects values with the given prefix.
*/
function prefixCollect(prefix) {
return (value, previous) => {
const values = (Array.isArray(value) ? value : [value]).map((v) => prefix + v);
return previous ? [...previous, ...values] : values;
};
}
/**
* Create Option - a helper function to create a commander option.

@@ -157,5 +168,5 @@ * @param name - the name of the option

function emitDictResult(r, options) {
const a = r.enabled ? "*" : " ";
const a = (r.blocked ? chalk.redBright("!") : "") + (r.enabled ? "*" : " ");
const dictColor = r.enabled ? chalk.yellowBright : chalk.rgb(200, 128, 50);
const n = (width) => dictColor(pruneAnsiTextEnd(r.name, width && width - a.length) + a);
const n = (width) => dictColor(pruneAnsiTextEnd(r.name, width && width - ansiWidth(a)) + a);
const c = colorize$1(chalk.white);

@@ -362,3 +373,3 @@ const locales = (width) => c(pruneAnsiTextEnd(r.locales?.join(",") || "", width));

progress: false
})).option("--fail-fast", "Exit after first file with an issue or error.").addOption(crOpt("--no-fail-fast", "Process all files even if there is an error.").hideHelp()).option("--continue-on-error", "Continue processing files even if there is a configuration error.").option("-r, --root <root folder>", "Root directory, defaults to current directory.").addOption(crOpt("--relative", "Issues are displayed relative to the root.").default(true).hideHelp()).option("--no-relative", "Issues are displayed with absolute path instead of relative to the root.").option("--show-context", "Show the surrounding text around an issue.").option("--show-suggestions", "Show spelling suggestions.").addOption(crOpt("--no-show-suggestions", "Do not show spelling suggestions or fixes.").default(void 0)).addOption(crOpt("--must-find-files", "Error if no files are found.").default(true).hideHelp()).option("--no-must-find-files", "Do not error if no files are found.").addOption(crOpt("--legacy", "Legacy output").hideHelp()).addOption(crOpt("--local <local>", "Deprecated -- Use: --locale").hideHelp()).option("--cache", "Use cache to only check changed files.").option("--no-cache", "Do not use cache.").option("--cache-reset", "Reset the cache file.").addOption(crOpt("--cache-strategy <strategy>", "Strategy to use for detecting changed files.").choices(["content", "metadata"]).default("content")).option("--cache-location <path>", `Path to the cache file or directory. (default: "${DEFAULT_CACHE_LOCATION}")`).option("--dot", "Include files and directories starting with `.` (period) when matching globs.").option("--gitignore", "Ignore files matching glob patterns found in .gitignore files.").option("--no-gitignore", "Do NOT use .gitignore files.").option("--gitignore-root <path>", "Prevent searching for .gitignore files past root.", collect$1).option("--validate-directives", "Validate in-document CSpell directives.").addOption(crOpt("--no-validate-directives", "Do not validate in-document CSpell directives.").hideHelp()).option("--max-file-size <size>", "Prevent checking large files. i.e 1MB, 50KB, 1GB").addOption(crOpt("--color", "Force color.").default(void 0)).addOption(crOpt("--no-color", "Turn off color.").default(void 0)).addOption(crOpt("--default-configuration", "Load the default configuration and dictionaries.").hideHelp()).addOption(crOpt("--no-default-configuration", "Do not load the default configuration and dictionaries.")).option("--dictionary <name>", "Enable a dictionary by name.", collect$1).option("--disable-dictionary <name>", "Disable a dictionary by name.", collect$1).option("--reporter <module|path>", "Specify one or more reporters to use.", collect$1).addOption(crOpt("--report <level>", "Set how unknown words are reported").choices(ReportChoicesAll)).addOption(crOpt("--skip-validation", "Collect and process documents, but do not spell check.").implies({ cache: false }).hideHelp()).addOption(crOpt("--issues-summary-report", "Output a summary of issues found.").hideHelp()).addOption(crOpt("--show-perf-summary", "Output a performance summary report.").hideHelp()).option("--issue-template [template]", "Use a custom issue template. See --help --issue-template for details.").addOption(crOpt("--debug", "Output information useful for debugging cspell.json files.").hideHelp()).usage(usage).addHelpText("after", augmentCommandHelp).arguments("[globs...]").action(action);
})).option("--fail-fast", "Exit after first file with an issue or error.").addOption(crOpt("--no-fail-fast", "Process all files even if there is an error.").hideHelp()).option("--continue-on-error", "Continue processing files even if there is a configuration error.").option("-r, --root <root folder>", "Root directory, defaults to current directory.").addOption(crOpt("--relative", "Issues are displayed relative to the root.").default(true).hideHelp()).option("--no-relative", "Issues are displayed with absolute path instead of relative to the root.").option("--show-context", "Show the surrounding text around an issue.").option("--show-suggestions", "Show spelling suggestions.").addOption(crOpt("--no-show-suggestions", "Do not show spelling suggestions or fixes.").default(void 0)).addOption(crOpt("--must-find-files", "Error if no files are found.").default(true).hideHelp()).option("--no-must-find-files", "Do not error if no files are found.").addOption(crOpt("--legacy", "Legacy output").hideHelp()).addOption(crOpt("--local <local>", "Deprecated -- Use: --locale").hideHelp()).option("--cache", "Use cache to only check changed files.").option("--no-cache", "Do not use cache.").option("--cache-reset", "Reset the cache file.").addOption(crOpt("--cache-strategy <strategy>", "Strategy to use for detecting changed files.").choices(["content", "metadata"]).default("content")).option("--cache-location <path>", `Path to the cache file or directory. (default: "${DEFAULT_CACHE_LOCATION}")`).option("--dot", "Include files and directories starting with `.` (period) when matching globs.").option("--gitignore", "Ignore files matching glob patterns found in .gitignore files.").option("--no-gitignore", "Do NOT use .gitignore files.").option("--gitignore-root <path>", "Prevent searching for .gitignore files past root.", collect$1).option("--validate-directives", "Validate in-document CSpell directives.").addOption(crOpt("--no-validate-directives", "Do not validate in-document CSpell directives.").hideHelp()).option("--max-file-size <size>", "Prevent checking large files. i.e 1MB, 50KB, 1GB").addOption(crOpt("--color", "Force color.").default(void 0)).addOption(crOpt("--no-color", "Turn off color.").default(void 0)).addOption(crOpt("--default-configuration", "Load the default configuration and dictionaries.").hideHelp()).addOption(crOpt("--no-default-configuration", "Do not load the default configuration and dictionaries.")).option("--dictionary <name>", "Enable a dictionary by name.", collect$1).addOption(crOpt("--no-dictionary <name>", "Disable a dictionary by name. Can be used multiple times.", prefixCollect("!")).hideHelp()).option("--disable-dictionary <name>", "Disable a dictionary by name.", collect$1).option("--reporter <module|path>", "Specify one or more reporters to use.", collect$1).addOption(crOpt("--report <level>", "Set how unknown words are reported").choices(ReportChoicesAll)).addOption(crOpt("--skip-validation", "Collect and process documents, but do not spell check.").implies({ cache: false }).hideHelp()).addOption(crOpt("--issues-summary-report", "Output a summary of issues found.").hideHelp()).addOption(crOpt("--show-perf-summary", "Output a performance summary report.").hideHelp()).option("--issue-template [template]", "Use a custom issue template. See --help --issue-template for details.").addOption(crOpt("--debug", "Output information useful for debugging cspell.json files.").hideHelp()).usage(usage).addHelpText("after", augmentCommandHelp).arguments("[globs...]").action(action);
return spellCheckCommand;

@@ -586,3 +597,3 @@ }

const f = calcFoundChar(r);
const a = r.dictActive ? "*" : " ";
const a = (r.dictBlocked ? chalk.redBright("!") : "") + (r.dictActive ? "*" : " ");
const dictName = r.dictName.slice(0, colWidthDictionaryName - 1) + a;

@@ -628,3 +639,3 @@ const n = (r.dictActive ? chalk.yellowBright : chalk.rgb(200, 128, 50))(dictName);

function commandTrace(prog) {
return prog.command("trace").description(`Trace words -- Search for words in the configuration and dictionaries.`).option("-c, --config <cspell.json>", "Configuration file to use. By default cspell looks for cspell.json in the current directory.").option("--locale <locale>", "Set language locales. i.e. \"en,fr\" for English and French, or \"en-GB\" for British English.").option("--language-id <language>", "Use programming language. i.e. \"php\" or \"scala\".").addOption(new Option("--languageId <language>", "Use programming language. i.e. \"php\" or \"scala\".").hideHelp()).option("--allow-compound-words", "Turn on allowCompoundWords").addOption(new Option("--allowCompoundWords", "Turn on allowCompoundWords.").hideHelp()).option("--no-allow-compound-words", "Turn off allowCompoundWords").option("--ignore-case", "Ignore case and accents when searching for words.").option("--no-ignore-case", "Do not ignore case and accents when searching for words.").option("--dictionary <name>", "Enable a dictionary by name. Can be used multiple times.", collect$1).addOption(new Option("--dictionary-path <format>", "Configure how to display the dictionary path.").choices([
return prog.command("trace").description(`Trace words -- Search for words in the configuration and dictionaries.`).option("-c, --config <cspell.json>", "Configuration file to use. By default cspell looks for cspell.json in the current directory.").option("--locale <locale>", "Set language locales. i.e. \"en,fr\" for English and French, or \"en-GB\" for British English.").option("--language-id <language>", "Use programming language. i.e. \"php\" or \"scala\".").addOption(new Option("--languageId <language>", "Use programming language. i.e. \"php\" or \"scala\".").hideHelp()).option("--allow-compound-words", "Turn on allowCompoundWords").addOption(new Option("--allowCompoundWords", "Turn on allowCompoundWords.").hideHelp()).option("--no-allow-compound-words", "Turn off allowCompoundWords").option("--ignore-case", "Ignore case and accents when searching for words.").option("--no-ignore-case", "Do not ignore case and accents when searching for words.").option("--dictionary <name>", "Enable a dictionary by name. Can be used multiple times.", collect$1).option("--no-dictionary <name>", "Disable a dictionary by name. Can be used multiple times.", prefixCollect("!")).addOption(new Option("--dictionary-path <format>", "Configure how to display the dictionary path.").choices([
"hide",

@@ -631,0 +642,0 @@ "short",

import "./options-CeDseSxu.js";
import { a as checkText, c as parseApplicationFeatureFlags, d as listDictionaries, i as TraceResult, l as suggestions, n as CheckTextResult, o as createInit, r as IncludeExcludeFlag, s as lint, t as AppError, u as trace } from "./application-5MjpInZh.js";
import { a as checkText, c as parseApplicationFeatureFlags, d as listDictionaries, i as TraceResult, l as suggestions, n as CheckTextResult, o as createInit, r as IncludeExcludeFlag, s as lint, t as AppError, u as trace } from "./application-i4vvz7Jf.js";
export { AppError, CheckTextResult, IncludeExcludeFlag, TraceResult, checkText, createInit, lint, listDictionaries, parseApplicationFeatureFlags, suggestions, trace };

@@ -1,3 +0,3 @@

import { a as parseApplicationFeatureFlags, c as listDictionaries, i as lint, n as checkText, o as suggestions, r as createInit, s as trace, t as IncludeExcludeFlag } from "./application-DxeSY2Ho.js";
import { a as parseApplicationFeatureFlags, c as listDictionaries, i as lint, n as checkText, o as suggestions, r as createInit, s as trace, t as IncludeExcludeFlag } from "./application-DYABxs7R.js";
export { IncludeExcludeFlag, checkText, createInit, lint, listDictionaries, parseApplicationFeatureFlags, suggestions, trace };
import { i as LinterCliOptions, o as TraceOptions, s as FinalizedReporter, t as BaseOptions } from "./options-CeDseSxu.js";
import { a as checkText, c as parseApplicationFeatureFlags, d as listDictionaries, i as TraceResult, l as suggestions, n as CheckTextResult, o as createInit, r as IncludeExcludeFlag, s as lint, t as AppError, u as trace } from "./application-5MjpInZh.js";
import { a as checkText, c as parseApplicationFeatureFlags, d as listDictionaries, i as TraceResult, l as suggestions, n as CheckTextResult, o as createInit, r as IncludeExcludeFlag, s as lint, t as AppError, u as trace } from "./application-i4vvz7Jf.js";
import "chalk";

@@ -4,0 +4,0 @@ import { CSpellReporter, ReporterConfiguration } from "@cspell/cspell-types";

@@ -1,2 +0,2 @@

import { a as parseApplicationFeatureFlags, c as listDictionaries, h as getReporter, i as lint, n as checkText, o as suggestions, r as createInit, s as trace, t as IncludeExcludeFlag } from "./application-DxeSY2Ho.js";
import { a as parseApplicationFeatureFlags, c as listDictionaries, h as getReporter, i as lint, n as checkText, o as suggestions, r as createInit, s as trace, t as IncludeExcludeFlag } from "./application-DYABxs7R.js";

@@ -3,0 +3,0 @@ export * from "@cspell/cspell-types"

{
"name": "cspell",
"version": "9.6.3",
"version": "9.6.4",
"description": "A Spelling Checker for Code!",

@@ -89,9 +89,9 @@ "funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",

"dependencies": {
"@cspell/cspell-json-reporter": "9.6.3",
"@cspell/cspell-performance-monitor": "9.6.3",
"@cspell/cspell-pipe": "9.6.3",
"@cspell/cspell-types": "9.6.3",
"@cspell/cspell-worker": "9.6.3",
"@cspell/dynamic-import": "9.6.3",
"@cspell/url": "9.6.3",
"@cspell/cspell-json-reporter": "9.6.4",
"@cspell/cspell-performance-monitor": "9.6.4",
"@cspell/cspell-pipe": "9.6.4",
"@cspell/cspell-types": "9.6.4",
"@cspell/cspell-worker": "9.6.4",
"@cspell/dynamic-import": "9.6.4",
"@cspell/url": "9.6.4",
"ansi-regex": "^6.2.2",

@@ -101,8 +101,8 @@ "chalk": "^5.6.2",

"commander": "^14.0.3",
"cspell-config-lib": "9.6.3",
"cspell-dictionary": "9.6.3",
"cspell-gitignore": "9.6.3",
"cspell-glob": "9.6.3",
"cspell-io": "9.6.3",
"cspell-lib": "9.6.3",
"cspell-config-lib": "9.6.4",
"cspell-dictionary": "9.6.4",
"cspell-gitignore": "9.6.4",
"cspell-glob": "9.6.4",
"cspell-io": "9.6.4",
"cspell-lib": "9.6.4",
"fast-json-stable-stringify": "^2.1.0",

@@ -122,3 +122,3 @@ "flatted": "^3.3.3",

},
"gitHead": "500b996b6c0a6ff025c42ef98db44776f43a9e72"
"gitHead": "e126c7f5708d4258ada35ba1d29d18952d7f0886"
}

@@ -294,2 +294,4 @@ # cspell

times.
--no-dictionary <name> Disable a dictionary by name. Can be used multiple
times.
--dictionary-path <format> Configure how to display the dictionary path.

@@ -296,0 +298,0 @@ (choices: "hide", "short", "long", "full",

import { a as SuggestionOptions, i as LinterCliOptions, n as DictionariesOptions, o as TraceOptions, r as LegacyOptions, t as BaseOptions } from "./options-CeDseSxu.js";
import { CheckTextInfo, FeatureFlags, IncludeExcludeFlag, SuggestionsForWordResult, TraceResult, TraceWordResult } from "cspell-lib";
import { CSpellReporter, RunResult } from "@cspell/cspell-types";
//#region src/config/options.d.ts
interface BaseConfigOptions {
/**
* The path to the configuration file to create / update.
* If not provided, a default file name will be used based on the format.
*/
config?: string;
/**
* The list of configuration files or dictionary packages to import.
* This can be a list of file paths, package names, or URLs.
*/
import?: string[];
/**
* The locale to use when spell checking (e.g., en, en-US, de).
*/
locale?: string;
/**
* Whether to add comments to the configuration file.
* - `true` - comments will be added to the configuration file.
* - `false` - no comments will be added.
* - `undefined` - the default behavior will be used based on the format.
*/
comments?: boolean;
/**
* Whether to remove all comments from the configuration file.
* - `true` - all comments will be removed.
* - `false` | `undefined` - no comments will be removed.
* @implies `comments: false`
*/
removeComments?: boolean;
/**
* Whether to add the schema reference to the configuration file.
* - `true` - the schema reference will be added / updated.
* - `false` - no schema reference will be added.
*/
schema?: boolean;
/**
* The list of dictionaries to enable in the configuration file.
* These are added to an existing configuration file or a new one.
* Existing dictionaries will not be removed.
*/
dictionary?: string[];
/**
* Whether to write the configuration to stdout instead of a file.
*/
stdout?: boolean;
}
interface InitOptions extends BaseConfigOptions {
/**
* The path where the configuration file will be written, it can be a file path or a URL.
* If not provided, a default file name will be used based on the format.
* The default will be `cspell.config.yaml` or `cspell.json` based on the format.
* @conflicts `config` - If `config` is provided, it will be used instead of `output`.
*/
output?: string;
/**
* The format of the configuration file.
* @conflicts `config` - If `config` is provided, the format will be inferred from the file extension.
*/
format?: "yaml" | "yml" | "json" | "jsonc";
}
//#endregion
//#region src/emitters/suggestionsEmitter.d.ts
interface TimedSuggestionsForWordResult extends SuggestionsForWordResult {
elapsedTimeMs?: number;
}
//#endregion
//#region src/dictionaries/listDictionaries.d.ts
interface ListDictionariesResult {
/**
* The name of the dictionary.
*/
name: string;
/**
* The description of the dictionary.
*/
description?: string | undefined;
/**
* The path to the dictionary file.
*/
path?: string | undefined;
/**
* True if the dictionary is enabled.
*/
enabled: boolean;
/**
* The inline dictionaries supported by the dictionary.
*/
inline?: string[] | undefined;
/**
* the languages locales supported by the dictionary.
*/
locales?: string[] | undefined;
/**
* The file types supported by the dictionary.
*/
fileTypes?: string[] | undefined;
}
declare function listDictionaries(options: DictionariesOptions): Promise<ListDictionariesResult[]>;
//#endregion
//#region src/application.d.mts
type AppError = NodeJS.ErrnoException;
declare function lint(fileGlobs: string[], options: LinterCliOptions, reporter?: CSpellReporter): Promise<RunResult>;
declare function trace(words: string[], options: TraceOptions): AsyncIterableIterator<TraceWordResult>;
type CheckTextResult = CheckTextInfo;
declare function checkText(filename: string, options: BaseOptions & LegacyOptions): Promise<CheckTextResult>;
declare function suggestions(words: string[], options: SuggestionOptions): AsyncIterable<TimedSuggestionsForWordResult>;
declare function createInit(options: InitOptions): Promise<void>;
declare function parseApplicationFeatureFlags(flags: string[] | undefined): FeatureFlags;
//#endregion
export { checkText as a, parseApplicationFeatureFlags as c, listDictionaries as d, TraceResult as i, suggestions as l, CheckTextResult as n, createInit as o, IncludeExcludeFlag as r, lint as s, AppError as t, trace as u };
//# sourceMappingURL=application-5MjpInZh.d.ts.map

Sorry, the diff of this file is too big to display