@isentinel/eslint-config 6.0.0-beta.4 → 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.6/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
- * Disallow the shorthand fragment syntax in favour of a named fragment
1025
- * @see https://github.com/christopher-buss/eslint-plugin-flawless/blob/v0.1.6/src/rules/jsx-shorthand-fragment/documentation.md
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.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.6/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.6/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.6/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.6/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.6/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.6/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.6/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
  /**
@@ -10631,7 +10636,10 @@ type EslintPluginRequireTestCaseName = [] | [{
10631
10636
  }]; // ----- eslint-plugin/test-case-property-ordering -----
10632
10637
  type EslintPluginTestCasePropertyOrdering = [] | [unknown[]]; // ----- eslint-plugin/test-case-shorthand-strings -----
10633
10638
  type EslintPluginTestCaseShorthandStrings = [] | [("as-needed" | "never" | "consistent" | "consistent-as-needed")]; // ----- flawless/jsx-shorthand-fragment -----
10634
- type FlawlessJsxShorthandFragment = [] | [string]; // ----- flawless/naming-convention -----
10639
+ type FlawlessJsxShorthandFragment = [] | [{
10640
+ fragmentName?: string;
10641
+ mode?: ("element" | "syntax");
10642
+ }]; // ----- flawless/naming-convention -----
10635
10643
  type _FlawlessNamingConventionFormatOptionsConfig = (_FlawlessNamingConventionPredefinedFormats[] | null);
10636
10644
  type _FlawlessNamingConventionPredefinedFormats = ("camelCase" | "strictCamelCase" | "PascalCase" | "StrictPascalCase" | "snake_case" | "UPPER_CASE");
10637
10645
  type _FlawlessNamingConventionUnderscoreOptions = ("forbid" | "allow" | "require" | "requireDouble" | "allowDouble" | "allowSingleOrDouble");
@@ -10960,7 +10968,10 @@ type FlawlessNamingConvention = ({
10960
10968
  interface _FlawlessNamingConvention_MatchRegexConfig {
10961
10969
  match: boolean;
10962
10970
  regex: string;
10963
- } // ----- flawless/purity -----
10971
+ } // ----- flawless/prefer-parameter-destructuring -----
10972
+ type FlawlessPreferParameterDestructuring = [] | [{
10973
+ allowSideEffectReordering?: boolean;
10974
+ }]; // ----- flawless/purity -----
10964
10975
  type FlawlessPurity = [] | [{
10965
10976
  additionalFunctions?: string[];
10966
10977
  ignore?: string[];
@@ -19222,7 +19233,7 @@ type Yoda = [] | [("always" | "never")] | [("always" | "never"), {
19222
19233
  exceptRange?: boolean;
19223
19234
  onlyEquality?: boolean;
19224
19235
  }]; // Names of all the configs
19225
- 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';
19226
19237
  //#endregion
19227
19238
  //#region src/types.d.ts
19228
19239
  type Awaitable<T> = Promise<T> | T;
@@ -19607,12 +19618,6 @@ interface OptionsConfig extends OptionsComponentExtensions, OptionsProjectType {
19607
19618
  * @requires eslint-plugin-eslint-plugin
19608
19619
  */
19609
19620
  eslintPlugin?: boolean | OptionsOverrides;
19610
- /**
19611
- * Enable eslint-plugin-flawless.
19612
- *
19613
- * @default false
19614
- */
19615
- flawless?: boolean | OptionsOverridesTypeAware;
19616
19621
  /**
19617
19622
  * Use external formatters to format files.
19618
19623
  *
@@ -19687,6 +19692,12 @@ interface OptionsConfig extends OptionsComponentExtensions, OptionsProjectType {
19687
19692
  * @default false
19688
19693
  */
19689
19694
  namedConfigs?: boolean;
19695
+ /**
19696
+ * Enable the opinionated `flawless/naming-convention` rules.
19697
+ *
19698
+ * @default false
19699
+ */
19700
+ naming?: boolean | OptionsOverridesTypeAware;
19690
19701
  /** Supply custom options for eslint-plugin-perfectionist. */
19691
19702
  perfectionist?: PerfectionistConfig;
19692
19703
  /**
@@ -19811,52 +19822,100 @@ interface OptionsStylistic {
19811
19822
  declare function ceaseNonsense(options?: OptionsComponentExtensions & OptionsFiles & OptionsIsInEditor & OptionsOverridesTypeAware & OptionsStylistic & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes): Promise<Array<TypedFlatConfigItem>>;
19812
19823
  //#endregion
19813
19824
  //#region src/configs/comments.d.ts
19814
- declare function comments(options?: OptionsFormatters & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19825
+ declare function comments({
19826
+ prettierOptions,
19827
+ stylistic
19828
+ }?: OptionsFormatters & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19815
19829
  //#endregion
19816
19830
  //#region src/configs/disables.d.ts
19817
- declare function disables(options: {
19831
+ declare function disables({
19832
+ root
19833
+ }: {
19818
19834
  root: Array<string>;
19819
19835
  }): Promise<Array<TypedFlatConfigItem>>;
19820
19836
  //#endregion
19821
19837
  //#region src/configs/e18e.d.ts
19822
- 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>>;
19823
19846
  //#endregion
19824
19847
  //#region src/configs/eslint-plugin.d.ts
19825
- declare function eslintPlugin(options?: OptionsFiles & OptionsOverrides): Promise<Array<TypedFlatConfigItem>>;
19848
+ declare function eslintPlugin({
19849
+ files,
19850
+ overrides
19851
+ }?: OptionsFiles & OptionsOverrides): Promise<Array<TypedFlatConfigItem>>;
19826
19852
  //#endregion
19827
19853
  //#region src/configs/flawless.d.ts
19828
- declare function flawless(options?: OptionsOverridesTypeAware & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes): Promise<Array<TypedFlatConfigItem>>;
19854
+ declare function flawless({
19855
+ stylistic
19856
+ }?: OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19829
19857
  //#endregion
19830
19858
  //#region src/configs/gitignore.d.ts
19831
19859
  interface GitignoreOptions {
19832
19860
  config?: boolean | FlatGitignoreOptions;
19833
19861
  explicit?: boolean;
19834
19862
  }
19835
- declare function gitignore(options?: GitignoreOptions): Promise<Array<TypedFlatConfigItem>>;
19863
+ declare function gitignore({
19864
+ config,
19865
+ explicit
19866
+ }?: GitignoreOptions): Promise<Array<TypedFlatConfigItem>>;
19836
19867
  //#endregion
19837
19868
  //#region src/configs/ignores.d.ts
19838
- 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>>;
19839
19870
  //#endregion
19840
19871
  //#region src/configs/imports.d.ts
19841
- declare function imports(options?: OptionsProjectType & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19872
+ declare function imports({
19873
+ stylistic,
19874
+ type
19875
+ }?: OptionsProjectType & OptionsStylistic): Promise<Array<TypedFlatConfigItem>>;
19842
19876
  //#endregion
19843
19877
  //#region src/configs/javascript.d.ts
19844
- 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>>;
19845
19884
  //#endregion
19846
19885
  //#region src/configs/jsdoc.d.ts
19847
- 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>>;
19848
19891
  //#endregion
19849
19892
  //#region src/configs/jsonc.d.ts
19850
- 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>>;
19851
19898
  //#endregion
19852
19899
  //#region src/configs/markdown.d.ts
19853
- 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>>;
19854
19909
  //#endregion
19855
19910
  //#region src/configs/node.d.ts
19856
19911
  declare function node(): Promise<Array<TypedFlatConfigItem>>;
19857
19912
  //#endregion
19858
19913
  //#region src/configs/package-json.d.ts
19859
- 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>>;
19860
19919
  //#endregion
19861
19920
  //#region src/configs/perfectionist.d.ts
19862
19921
  /**
@@ -19878,10 +19937,12 @@ declare function promise(): Promise<Array<TypedFlatConfigItem>>;
19878
19937
  declare function react(options?: OptionsComponentExtensions & OptionsFiles & OptionsStylistic & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes & ReactConfig): Promise<Array<TypedFlatConfigItem>>;
19879
19938
  //#endregion
19880
19939
  //#region src/configs/roblox.d.ts
19881
- 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>>;
19882
19941
  //#endregion
19883
19942
  //#region src/configs/sonarjs.d.ts
19884
- declare function sonarjs(options: Required<OptionsIsInEditor>): Promise<Array<TypedFlatConfigItem>>;
19943
+ declare function sonarjs({
19944
+ isInEditor
19945
+ }: Required<OptionsIsInEditor>): Promise<Array<TypedFlatConfigItem>>;
19885
19946
  //#endregion
19886
19947
  //#region src/configs/sort.d.ts
19887
19948
  /**
@@ -19931,24 +19992,46 @@ declare function spelling(options?: OptionsComponentExtensions & OptionsFiles &
19931
19992
  //#endregion
19932
19993
  //#region src/configs/stylistic.d.ts
19933
19994
  declare const StylisticConfigDefaults: StylisticConfig;
19934
- declare function stylistic(options?: StylisticConfig, prettierOptions?: PrettierOptions): Promise<Array<TypedFlatConfigItem>>;
19995
+ declare function stylistic$1(options?: StylisticConfig, prettierOptions?: PrettierOptions): Promise<Array<TypedFlatConfigItem>>;
19935
19996
  //#endregion
19936
19997
  //#region src/configs/test.d.ts
19937
- 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>>;
19938
20008
  //#endregion
19939
20009
  //#region src/configs/toml.d.ts
19940
- 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>>;
19941
20015
  //#endregion
19942
20016
  //#region src/configs/typescript.d.ts
19943
20017
  declare function typescript(options?: OptionsComponentExtensions & OptionsFiles & OptionsOverridesTypeAware & OptionsStylistic & OptionsTypeScriptErasableOnly & OptionsTypeScriptParserOptions & OptionsTypeScriptWithTypes): Promise<Array<TypedFlatConfigItem>>;
19944
20018
  //#endregion
19945
20019
  //#region src/configs/unicorn.d.ts
19946
- declare function unicorn(options?: OptionsHasRoblox & OptionsStylistic & OptionsUnicorn & {
20020
+ declare function unicorn({
20021
+ nameReplacements,
20022
+ roblox,
20023
+ root: customRootGlobs,
20024
+ stylistic
20025
+ }?: OptionsHasRoblox & OptionsStylistic & OptionsUnicorn & {
19947
20026
  root?: Array<string>;
19948
20027
  }): Promise<Array<TypedFlatConfigItem>>;
19949
20028
  //#endregion
19950
20029
  //#region src/configs/yaml.d.ts
19951
- 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>>;
19952
20035
  //#endregion
19953
20036
  //#region src/factory.d.ts
19954
20037
  declare const defaultPluginRenaming: {
@@ -20015,4 +20098,4 @@ declare const GLOB_BUILD_TOOLS: Array<string>;
20015
20098
  declare const GLOB_ALL_SRC: string[];
20016
20099
  declare const GLOB_EXCLUDE: string[];
20017
20100
  //#endregion
20018
- 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 };