@isentinel/eslint-config 6.0.0-beta.5 → 6.0.0-beta.6

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/dist/index.d.mts CHANGED
@@ -1017,47 +1017,52 @@ interface RuleOptions {
1017
1017
  'eslint-plugin/unique-test-case-names'?: Linter.RuleEntry<[]>;
1018
1018
  /**
1019
1019
  * Disallow shorthand boolean JSX attributes
1020
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/jsx-shorthand-boolean/documentation.md
1020
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/jsx-shorthand-boolean/documentation.md
1021
1021
  */
1022
1022
  'flawless/jsx-shorthand-boolean'?: Linter.RuleEntry<[]>;
1023
1023
  /**
1024
1024
  * Enforce a consistent fragment form: the shorthand `<>...</>` or a named fragment
1025
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/jsx-shorthand-fragment/documentation.md
1025
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/jsx-shorthand-fragment/documentation.md
1026
1026
  */
1027
1027
  'flawless/jsx-shorthand-fragment'?: Linter.RuleEntry<FlawlessJsxShorthandFragment>;
1028
1028
  /**
1029
1029
  * Enforce naming conventions for everything across a codebase
1030
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/naming-convention/documentation.md
1030
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/naming-convention/documentation.md
1031
1031
  */
1032
1032
  'flawless/naming-convention'?: Linter.RuleEntry<FlawlessNamingConvention>;
1033
1033
  /**
1034
1034
  * Disallow unnecessary usage of 'useCallback'
1035
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/no-unnecessary-use-callback/documentation.md
1035
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/no-unnecessary-use-callback/documentation.md
1036
1036
  */
1037
1037
  'flawless/no-unnecessary-use-callback'?: Linter.RuleEntry<[]>;
1038
1038
  /**
1039
1039
  * Disallow unnecessary usage of 'useMemo'
1040
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/no-unnecessary-use-memo/documentation.md
1040
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/no-unnecessary-use-memo/documentation.md
1041
1041
  */
1042
1042
  'flawless/no-unnecessary-use-memo'?: Linter.RuleEntry<[]>;
1043
1043
  /**
1044
1044
  * Enforce destructuring assignment for component props
1045
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/prefer-destructuring-assignment/documentation.md
1045
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/prefer-destructuring-assignment/documentation.md
1046
1046
  */
1047
1047
  'flawless/prefer-destructuring-assignment'?: Linter.RuleEntry<[]>;
1048
+ /**
1049
+ * Enforce destructuring parameters in the function signature
1050
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/prefer-parameter-destructuring/documentation.md
1051
+ */
1052
+ 'flawless/prefer-parameter-destructuring'?: Linter.RuleEntry<FlawlessPreferParameterDestructuring>;
1048
1053
  /**
1049
1054
  * Disallow impure calls such as `math.random` or `os.clock` during render
1050
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/purity/documentation.md
1055
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/purity/documentation.md
1051
1056
  */
1052
1057
  'flawless/purity'?: Linter.RuleEntry<FlawlessPurity>;
1053
1058
  /**
1054
1059
  * Enforce a configured sort order for TOML keys and tables
1055
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/toml-sort-keys/documentation.md
1060
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/toml-sort-keys/documentation.md
1056
1061
  */
1057
1062
  'flawless/toml-sort-keys'?: Linter.RuleEntry<FlawlessTomlSortKeys>;
1058
1063
  /**
1059
1064
  * Enforce blank lines around top-level YAML block collection keys
1060
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.7/src/rules/yaml-block-key-blank-lines/documentation.md
1065
+ * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.10/src/rules/yaml-block-key-blank-lines/documentation.md
1061
1066
  */
1062
1067
  'flawless/yaml-block-key-blank-lines'?: Linter.RuleEntry<[]>;
1063
1068
  /**
@@ -10963,7 +10968,10 @@ type FlawlessNamingConvention = ({
10963
10968
  interface _FlawlessNamingConvention_MatchRegexConfig {
10964
10969
  match: boolean;
10965
10970
  regex: string;
10966
- } // ----- flawless/purity -----
10971
+ } // ----- flawless/prefer-parameter-destructuring -----
10972
+ type FlawlessPreferParameterDestructuring = [] | [{
10973
+ allowSideEffectReordering?: boolean;
10974
+ }]; // ----- flawless/purity -----
10967
10975
  type FlawlessPurity = [] | [{
10968
10976
  additionalFunctions?: string[];
10969
10977
  ignore?: string[];
@@ -19225,7 +19233,7 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
19225
19233
  exceptRange?: boolean;
19226
19234
  onlyEquality?: boolean;
19227
19235
  }]; // Names of all the configs
19228
- type ConfigNames = 'isentinel/cease-nonsense/setup' | 'isentinel/cease-nonsense' | 'isentinel/typescript/rules-type-aware' | 'isentinel/eslint/comments' | 'isentinel/eslint/comments/src' | 'isentinel/e18e/rules' | 'isentinel/eslint-plugin/setup' | 'isentinel/eslint-plugin/rules' | 'isentinel/flawless/setup' | 'isentinel/flawless/ts/rules-type-aware' | 'isentinel/flawless/tsx/rules-type-aware' | 'isentinel/gitignore' | 'isentinel/ignores' | 'isentinel/imports/rules' | 'isentinel/imports/game' | 'isentinel/javascript/setup' | 'isentinel/javascript/rules' | 'isentinel/jsdoc/setup' | 'isentinel/jsdoc' | 'isentinel/jsonc/setup' | 'isentinel/jsonc/rules' | 'isentinel/markdown/setup' | 'isentinel/markdown/processor' | 'isentinel/markdown/parser' | 'isentinel/markdown/disables' | 'isentinel/node/rules' | 'isentinel/oxfmt/setup' | 'isentinel/oxfmt/javascript' | 'isentinel/oxfmt/typescript' | 'isentinel/oxfmt/css' | 'isentinel/oxfmt/scss' | 'isentinel/oxfmt/less' | 'isentinel/oxfmt/html' | 'isentinel/oxfmt/markdown' | 'isentinel/oxfmt/graphql' | 'isentinel/oxfmt/json' | 'isentinel/oxfmt/yaml' | 'isentinel/package-json/setup' | 'isentinel/package-json' | 'isentinel/package-json/root' | 'isentinel/perfectionist/setup' | 'isentinel/perfectionist' | 'isentinel/perfectionist/jsx' | 'isentinel/pnpm/setup' | 'isentinel/pnpm/package-json' | 'isentinel/pnpm/pnpm-workspace-yaml' | 'isentinel/promise' | 'isentinel/react/setup' | 'isentinel/react/setup/naming' | 'isentinel/react/rules' | 'isentinel/react/type-aware-rules' | 'isentinel/roblox/setup' | 'isentinel/roblox/parser' | 'isentinel/roblox/type-aware-parser' | 'isentinel/roblox' | 'isentinel/roblox/rules-type-aware' | 'isentinel/roblox/format-lua/setup' | 'isentinel/roblox/format-lua' | 'isentinel/sonarjs' | 'isentinel/spelling/setup' | 'isentinel/spelling' | 'isentinel/stylistic/setup' | 'isentinel/stylistic' | 'isentinel/stylistic/ts' | 'isentinel/stylistic/js' | 'isentinel/stylistic/markdown-code' | 'isentinel/test/jest/setup' | 'isentinel/test/jest/rules' | 'isentinel/test/vitest/setup' | 'isentinel/test/vitest/rules' | 'isentinel/toml/setup' | 'isentinel/toml/rules' | 'isentinel/typescript/setup' | 'isentinel/typescript/parser' | 'isentinel/typescript/type-aware-parser' | 'isentinel/typescript/rules' | 'isentinel/typescript/rules-type-aware' | 'isentinel/typescript/erasable-syntax-only' | 'isentinel/unicorn/setup' | 'isentinel/unicorn/rules' | 'isentinel/unicorn/root' | 'isentinel/yaml/setup' | 'isentinel/yaml/rules';
19236
+ type ConfigNames = 'isentinel/cease-nonsense/setup' | 'isentinel/cease-nonsense' | 'isentinel/typescript/rules-type-aware' | 'isentinel/eslint/comments' | 'isentinel/eslint/comments/src' | 'isentinel/e18e/rules' | 'isentinel/eslint-plugin/setup' | 'isentinel/eslint-plugin/rules' | 'isentinel/flawless/setup' | 'isentinel/flawless/rules' | 'isentinel/gitignore' | 'isentinel/ignores' | 'isentinel/imports/rules' | 'isentinel/imports/game' | 'isentinel/javascript/setup' | 'isentinel/javascript/rules' | 'isentinel/jsdoc/setup' | 'isentinel/jsdoc' | 'isentinel/jsonc/setup' | 'isentinel/jsonc/rules' | 'isentinel/markdown/setup' | 'isentinel/markdown/processor' | 'isentinel/markdown/parser' | 'isentinel/markdown/disables' | 'isentinel/naming/setup' | 'isentinel/naming/ts/rules-type-aware' | 'isentinel/naming/tsx/rules-type-aware' | 'isentinel/node/rules' | 'isentinel/oxfmt/setup' | 'isentinel/oxfmt/javascript' | 'isentinel/oxfmt/typescript' | 'isentinel/oxfmt/css' | 'isentinel/oxfmt/scss' | 'isentinel/oxfmt/less' | 'isentinel/oxfmt/html' | 'isentinel/oxfmt/markdown' | 'isentinel/oxfmt/graphql' | 'isentinel/oxfmt/json' | 'isentinel/oxfmt/yaml' | 'isentinel/package-json/setup' | 'isentinel/package-json' | 'isentinel/package-json/root' | 'isentinel/perfectionist/setup' | 'isentinel/perfectionist' | 'isentinel/perfectionist/jsx' | 'isentinel/pnpm/setup' | 'isentinel/pnpm/package-json' | 'isentinel/pnpm/pnpm-workspace-yaml' | 'isentinel/promise' | 'isentinel/react/setup' | 'isentinel/react/setup/naming' | 'isentinel/react/rules' | 'isentinel/react/type-aware-rules' | 'isentinel/roblox/setup' | 'isentinel/roblox/parser' | 'isentinel/roblox/type-aware-parser' | 'isentinel/roblox' | 'isentinel/roblox/rules-type-aware' | 'isentinel/roblox/format-lua/setup' | 'isentinel/roblox/format-lua' | 'isentinel/sonarjs' | 'isentinel/spelling/setup' | 'isentinel/spelling' | 'isentinel/stylistic/setup' | 'isentinel/stylistic' | 'isentinel/stylistic/ts' | 'isentinel/stylistic/js' | 'isentinel/stylistic/markdown-code' | 'isentinel/test/jest/setup' | 'isentinel/test/jest/rules' | 'isentinel/test/vitest/setup' | 'isentinel/test/vitest/rules' | 'isentinel/toml/setup' | 'isentinel/toml/rules' | 'isentinel/typescript/setup' | 'isentinel/typescript/parser' | 'isentinel/typescript/type-aware-parser' | 'isentinel/typescript/rules' | 'isentinel/typescript/rules-type-aware' | 'isentinel/typescript/erasable-syntax-only' | 'isentinel/unicorn/setup' | 'isentinel/unicorn/rules' | 'isentinel/unicorn/root' | 'isentinel/yaml/setup' | 'isentinel/yaml/rules';
19229
19237
  //#endregion
19230
19238
  //#region src/types.d.ts
19231
19239
  type Awaitable<T> = Promise<T> | T;
@@ -19610,12 +19618,6 @@ interface OptionsConfig extends OptionsComponentExtensions, OptionsProjectType {
19610
19618
  * @requires eslint-plugin-eslint-plugin
19611
19619
  */
19612
19620
  eslintPlugin?: boolean | OptionsOverrides;
19613
- /**
19614
- * Enable eslint-plugin-flawless.
19615
- *
19616
- * @default false
19617
- */
19618
- flawless?: boolean | OptionsOverridesTypeAware;
19619
19621
  /**
19620
19622
  * Use external formatters to format files.
19621
19623
  *
@@ -19690,6 +19692,12 @@ interface OptionsConfig extends OptionsComponentExtensions, OptionsProjectType {
19690
19692
  * @default false
19691
19693
  */
19692
19694
  namedConfigs?: boolean;
19695
+ /**
19696
+ * Enable the opinionated `flawless/naming-convention` rules.
19697
+ *
19698
+ * @default false
19699
+ */
19700
+ naming?: boolean | OptionsOverridesTypeAware;
19693
19701
  /** Supply custom options for eslint-plugin-perfectionist. */
19694
19702
  perfectionist?: PerfectionistConfig;
19695
19703
  /**
@@ -19814,52 +19822,100 @@ interface OptionsStylistic {
19814
19822
  declare function ceaseNonsense(options?: OptionsComponentExtensions & OptionsFiles & OptionsIsInEditor & OptionsOverridesTypeAware & OptionsStylistic & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes): Promise<Array<TypedFlatConfigItem>>;
19815
19823
  //#endregion
19816
19824
  //#region src/configs/comments.d.ts
19817
- declare function comments(options?: OptionsFormatters & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19825
+ declare function comments({
19826
+ prettierOptions,
19827
+ stylistic
19828
+ }?: OptionsFormatters & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19818
19829
  //#endregion
19819
19830
  //#region src/configs/disables.d.ts
19820
- declare function disables(options: {
19831
+ declare function disables({
19832
+ root
19833
+ }: {
19821
19834
  root: Array<string>;
19822
19835
  }): Promise<Array<TypedFlatConfigItem>>;
19823
19836
  //#endregion
19824
19837
  //#region src/configs/e18e.d.ts
19825
- declare function e18e(options?: OptionsE18e & OptionsIsInEditor & OptionsProjectType): Promise<Array<TypedFlatConfigItem>>;
19838
+ declare function e18e({
19839
+ isInEditor,
19840
+ modernization,
19841
+ type,
19842
+ moduleReplacements,
19843
+ overrides,
19844
+ performanceImprovements
19845
+ }?: OptionsE18e & OptionsIsInEditor & OptionsProjectType): Promise<Array<TypedFlatConfigItem>>;
19826
19846
  //#endregion
19827
19847
  //#region src/configs/eslint-plugin.d.ts
19828
- declare function eslintPlugin(options?: OptionsFiles & OptionsOverrides): Promise<Array<TypedFlatConfigItem>>;
19848
+ declare function eslintPlugin({
19849
+ files,
19850
+ overrides
19851
+ }?: OptionsFiles & OptionsOverrides): Promise<Array<TypedFlatConfigItem>>;
19829
19852
  //#endregion
19830
19853
  //#region src/configs/flawless.d.ts
19831
- declare function flawless(options?: OptionsOverridesTypeAware & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes): Promise<Array<TypedFlatConfigItem>>;
19854
+ declare function flawless({
19855
+ stylistic
19856
+ }?: OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19832
19857
  //#endregion
19833
19858
  //#region src/configs/gitignore.d.ts
19834
19859
  interface GitignoreOptions {
19835
19860
  config?: boolean | FlatGitignoreOptions;
19836
19861
  explicit?: boolean;
19837
19862
  }
19838
- declare function gitignore(options?: GitignoreOptions): Promise<Array<TypedFlatConfigItem>>;
19863
+ declare function gitignore({
19864
+ config,
19865
+ explicit
19866
+ }?: GitignoreOptions): Promise<Array<TypedFlatConfigItem>>;
19839
19867
  //#endregion
19840
19868
  //#region src/configs/ignores.d.ts
19841
- declare function ignores(userIgnores?: ((originals: Array<string>) => Array<string>) | Array<string>): Promise<Array<TypedFlatConfigItem>>;
19869
+ declare function ignores$1(userIgnores?: ((originals: Array<string>) => Array<string>) | Array<string>): Promise<Array<TypedFlatConfigItem>>;
19842
19870
  //#endregion
19843
19871
  //#region src/configs/imports.d.ts
19844
- declare function imports(options?: OptionsProjectType & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19872
+ declare function imports({
19873
+ stylistic,
19874
+ type
19875
+ }?: OptionsProjectType & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19845
19876
  //#endregion
19846
19877
  //#region src/configs/javascript.d.ts
19847
- declare function javascript(options?: OptionsFiles & OptionsHasRoblox & OptionsIsInEditor & OptionsOverrides & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19878
+ declare function javascript({
19879
+ isInEditor,
19880
+ overrides,
19881
+ roblox,
19882
+ stylistic
19883
+ }?: OptionsFiles & OptionsHasRoblox & OptionsIsInEditor & OptionsOverrides & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19848
19884
  //#endregion
19849
19885
  //#region src/configs/jsdoc.d.ts
19850
- declare function jsdoc(options?: JsdocOptions & OptionsProjectType & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19886
+ declare function jsdoc({
19887
+ full,
19888
+ stylistic,
19889
+ type
19890
+ }?: JsdocOptions & OptionsProjectType & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19851
19891
  //#endregion
19852
19892
  //#region src/configs/jsonc.d.ts
19853
- declare function jsonc(options?: OptionsFiles & OptionsOverrides & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19893
+ declare function jsonc({
19894
+ files,
19895
+ overrides,
19896
+ stylistic
19897
+ }?: OptionsFiles & OptionsOverrides & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19854
19898
  //#endregion
19855
19899
  //#region src/configs/markdown.d.ts
19856
- declare function markdown(options?: OptionsComponentExtensions & OptionsFiles & OptionsOverrides & OptionsProjectType): Promise<Array<TypedFlatConfigItem>>;
19900
+ declare function markdown({
19901
+ componentExts: componentExtensions,
19902
+ files,
19903
+ overrides,
19904
+ type
19905
+ }?: OptionsComponentExtensions & OptionsFiles & OptionsOverrides & OptionsProjectType): Promise<Array<TypedFlatConfigItem>>;
19906
+ //#endregion
19907
+ //#region src/configs/naming.d.ts
19908
+ declare function naming(options?: OptionsOverridesTypeAware & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes): Promise<Array<TypedFlatConfigItem>>;
19857
19909
  //#endregion
19858
19910
  //#region src/configs/node.d.ts
19859
19911
  declare function node(): Promise<Array<TypedFlatConfigItem>>;
19860
19912
  //#endregion
19861
19913
  //#region src/configs/package-json.d.ts
19862
- declare function packageJson(options?: OptionsHasRoblox & OptionsProjectType & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19914
+ declare function packageJson({
19915
+ roblox,
19916
+ stylistic,
19917
+ type
19918
+ }?: OptionsHasRoblox & OptionsProjectType & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19863
19919
  //#endregion
19864
19920
  //#region src/configs/perfectionist.d.ts
19865
19921
  /**
@@ -19881,10 +19937,12 @@ declare function promise(): Promise<Array<TypedFlatConfigItem>>;
19881
19937
  declare function react(options?: OptionsComponentExtensions & OptionsFiles & OptionsStylistic & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes & ReactConfig): Promise<Array<TypedFlatConfigItem>>;
19882
19938
  //#endregion
19883
19939
  //#region src/configs/roblox.d.ts
19884
- declare function roblox(options?: OptionsComponentExtensions & OptionsFilesTypeAware & OptionsOverridesTypeAware & OptionsStylistic & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes, formatLua?: boolean): Promise<Array<TypedFlatConfigItem>>;
19940
+ declare function roblox$1(options?: OptionsComponentExtensions & OptionsFilesTypeAware & OptionsOverridesTypeAware & OptionsStylistic & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes, formatLua?: boolean): Promise<Array<TypedFlatConfigItem>>;
19885
19941
  //#endregion
19886
19942
  //#region src/configs/sonarjs.d.ts
19887
- declare function sonarjs(options: Required<OptionsIsInEditor>): Promise<Array<TypedFlatConfigItem>>;
19943
+ declare function sonarjs({
19944
+ isInEditor
19945
+ }: Required<OptionsIsInEditor>): Promise<Array<TypedFlatConfigItem>>;
19888
19946
  //#endregion
19889
19947
  //#region src/configs/sort.d.ts
19890
19948
  /**
@@ -19934,24 +19992,46 @@ declare function spelling(options?: OptionsComponentExtensions & OptionsFiles &
19934
19992
  //#endregion
19935
19993
  //#region src/configs/stylistic.d.ts
19936
19994
  declare const StylisticConfigDefaults: StylisticConfig;
19937
- declare function stylistic(options?: StylisticConfig, prettierOptions?: PrettierOptions): Promise<Array<TypedFlatConfigItem>>;
19995
+ declare function stylistic$1(options?: StylisticConfig, prettierOptions?: PrettierOptions): Promise<Array<TypedFlatConfigItem>>;
19938
19996
  //#endregion
19939
19997
  //#region src/configs/test.d.ts
19940
- declare function test(options?: OptionsFiles & OptionsHasRoblox & OptionsIsInEditor & OptionsOverrides & OptionsProjectType & OptionsStylistic & OptionsTestFramework): Promise<Array<TypedFlatConfigItem>>;
19998
+ declare function test({
19999
+ files,
20000
+ isInEditor,
20001
+ jest,
20002
+ overrides,
20003
+ roblox: isRoblox,
20004
+ stylistic,
20005
+ type,
20006
+ vitest
20007
+ }?: OptionsFiles & OptionsHasRoblox & OptionsIsInEditor & OptionsOverrides & OptionsProjectType & OptionsStylistic & OptionsTestFramework): Promise<Array<TypedFlatConfigItem>>;
19941
20008
  //#endregion
19942
20009
  //#region src/configs/toml.d.ts
19943
- declare function toml(options?: OptionsFiles & OptionsOverrides & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
20010
+ declare function toml({
20011
+ files,
20012
+ overrides,
20013
+ stylistic
20014
+ }?: OptionsFiles & OptionsOverrides & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19944
20015
  //#endregion
19945
20016
  //#region src/configs/typescript.d.ts
19946
20017
  declare function typescript(options?: OptionsComponentExtensions & OptionsFiles & OptionsOverridesTypeAware & OptionsStylistic & OptionsTypeScriptErasableOnly & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes): Promise<Array<TypedFlatConfigItem>>;
19947
20018
  //#endregion
19948
20019
  //#region src/configs/unicorn.d.ts
19949
- declare function unicorn(options?: OptionsHasRoblox & OptionsStylistic & OptionsUnicorn & {
20020
+ declare function unicorn({
20021
+ nameReplacements,
20022
+ roblox,
20023
+ root: customRootGlobs,
20024
+ stylistic
20025
+ }?: OptionsHasRoblox & OptionsStylistic & OptionsUnicorn & {
19950
20026
  root?: Array<string>;
19951
20027
  }): Promise<Array<TypedFlatConfigItem>>;
19952
20028
  //#endregion
19953
20029
  //#region src/configs/yaml.d.ts
19954
- declare function yaml(options?: OptionsFiles & OptionsOverrides & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
20030
+ declare function yaml({
20031
+ files,
20032
+ overrides,
20033
+ stylistic
20034
+ }?: OptionsFiles & OptionsOverrides & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19955
20035
  //#endregion
19956
20036
  //#region src/factory.d.ts
19957
20037
  declare const defaultPluginRenaming: {
@@ -20018,4 +20098,4 @@ declare const GLOB_BUILD_TOOLS: Array<string>;
20018
20098
  declare const GLOB_ALL_SRC: string[];
20019
20099
  declare const GLOB_EXCLUDE: string[];
20020
20100
  //#endregion
20021
- export { Awaitable, type ConfigNames, type FlatConfigComposer, GLOB_ALL_JSON, GLOB_ALL_SRC, GLOB_BUILD_TOOLS, GLOB_CSS, GLOB_DTS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LUA, GLOB_MARKDOWN, GLOB_MARKDOWN_BLOCKS, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_MISE, GLOB_POSTCSS, GLOB_ROOT, GLOB_ROOT_SRC, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, GitignoreOptions, JsdocOptions, NamedFlatConfigItem, NamedOptionsConfig, OptionsComponentExtensions, OptionsConfig, OptionsE18e, OptionsFiles, OptionsFilesTypeAware, OptionsFormatters, OptionsHasRoblox, OptionsHasTypeScript, OptionsIsInEditor, OptionsJest, OptionsOverrides, OptionsOverridesTypeAware, OptionsPnpm, OptionsProjectType, OptionsStylistic, OptionsTestFramework, OptionsTypeScriptErasableOnly, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, OptionsVitest, type OxfmtOptions, PerfectionistConfig, type PrettierOptions, ReactConfig, Rules, SpellCheckConfig, StylisticConfig, StylisticConfigDefaults, TypedFlatConfigItem, ceaseNonsense, comments, isentinel as default, isentinel, defaultPluginRenaming, disables, e18e, eslintPlugin, flawless, gitignore, ignores, imports, isInAgentSession, isInEditorEnvironment, isInGitHooksOrLintStaged, javascript, jsdoc, jsonc, markdown, node, oxfmt, packageJson, perfectionist, pnpm, promise, react, roblox, sonarjs, sortCspell, sortGithubAction, sortMiseToml, sortPnpmWorkspace, sortRojoProject, sortTsconfig, spelling, stylistic, test, toml, typescript, unicorn, yaml };
20101
+ export { Awaitable, type ConfigNames, type FlatConfigComposer, GLOB_ALL_JSON, GLOB_ALL_SRC, GLOB_BUILD_TOOLS, GLOB_CSS, GLOB_DTS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_LUA, GLOB_MARKDOWN, GLOB_MARKDOWN_BLOCKS, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_MISE, GLOB_POSTCSS, GLOB_ROOT, GLOB_ROOT_SRC, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_XML, GLOB_YAML, GitignoreOptions, JsdocOptions, NamedFlatConfigItem, NamedOptionsConfig, OptionsComponentExtensions, OptionsConfig, OptionsE18e, OptionsFiles, OptionsFilesTypeAware, OptionsFormatters, OptionsHasRoblox, OptionsHasTypeScript, OptionsIsInEditor, OptionsJest, OptionsOverrides, OptionsOverridesTypeAware, OptionsPnpm, OptionsProjectType, OptionsStylistic, OptionsTestFramework, OptionsTypeScriptErasableOnly, OptionsTypeScriptParserOptions, OptionsTypeScriptWithTypes, OptionsTypescript, OptionsUnicorn, OptionsVitest, type OxfmtOptions, PerfectionistConfig, type PrettierOptions, ReactConfig, Rules, SpellCheckConfig, StylisticConfig, StylisticConfigDefaults, TypedFlatConfigItem, ceaseNonsense, comments, isentinel as default, isentinel, defaultPluginRenaming, disables, e18e, eslintPlugin, flawless, gitignore, ignores$1 as ignores, imports, isInAgentSession, isInEditorEnvironment, isInGitHooksOrLintStaged, javascript, jsdoc, jsonc, markdown, naming, node, oxfmt, packageJson, perfectionist, pnpm, promise, react, roblox$1 as roblox, sonarjs, sortCspell, sortGithubAction, sortMiseToml, sortPnpmWorkspace, sortRojoProject, sortTsconfig, spelling, stylistic$1 as stylistic, test, toml, typescript, unicorn, yaml };