@storm-software/eslint 0.23.0 → 0.25.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/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.22.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.24.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/dist/preset.d.mts CHANGED
@@ -780,231 +780,6 @@ interface RuleOptions {
780
780
  * @see https://typescript-eslint.io/rules/use-unknown-in-catch-callback-variable
781
781
  */
782
782
  '@typescript-eslint/use-unknown-in-catch-callback-variable'?: Linter.RuleEntry<[]>
783
- /**
784
- * Enforce or ban the use of inline type-only markers for named imports.
785
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/consistent-type-specifier-style.md
786
- */
787
- 'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>
788
- /**
789
- * Ensure a default export is present, given a default import.
790
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/default.md
791
- */
792
- 'import/default'?: Linter.RuleEntry<[]>
793
- /**
794
- * Enforce a leading comment with the webpackChunkName for dynamic imports.
795
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/dynamic-import-chunkname.md
796
- */
797
- 'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>
798
- /**
799
- * Forbid any invalid exports, i.e. re-export of the same name.
800
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/export.md
801
- */
802
- 'import/export'?: Linter.RuleEntry<[]>
803
- /**
804
- * Ensure all exports appear after other statements.
805
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/exports-last.md
806
- */
807
- 'import/exports-last'?: Linter.RuleEntry<[]>
808
- /**
809
- * Ensure consistent use of file extension within the import path.
810
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/extensions.md
811
- */
812
- 'import/extensions'?: Linter.RuleEntry<ImportExtensions>
813
- /**
814
- * Ensure all imports appear before other statements.
815
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/first.md
816
- */
817
- 'import/first'?: Linter.RuleEntry<ImportFirst>
818
- /**
819
- * Prefer named exports to be grouped together in a single export declaration
820
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/group-exports.md
821
- */
822
- 'import/group-exports'?: Linter.RuleEntry<[]>
823
- /**
824
- * Replaced by `import/first`.
825
- * @see https://github.com/import-js/eslint-plugin-import/blob/7b25c1cb95ee18acc1531002fd343e1e6031f9ed/docs/rules/imports-first.md
826
- * @deprecated
827
- */
828
- 'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>
829
- /**
830
- * Enforce the maximum number of dependencies a module can have.
831
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/max-dependencies.md
832
- */
833
- 'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>
834
- /**
835
- * Ensure named imports correspond to a named export in the remote file.
836
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/named.md
837
- */
838
- 'import/named'?: Linter.RuleEntry<ImportNamed>
839
- /**
840
- * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
841
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/namespace.md
842
- */
843
- 'import/namespace'?: Linter.RuleEntry<ImportNamespace>
844
- /**
845
- * Enforce a newline after import statements.
846
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/newline-after-import.md
847
- */
848
- 'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>
849
- /**
850
- * Forbid import of modules using absolute paths.
851
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-absolute-path.md
852
- */
853
- 'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>
854
- /**
855
- * Forbid AMD `require` and `define` calls.
856
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-amd.md
857
- */
858
- 'import/no-amd'?: Linter.RuleEntry<[]>
859
- /**
860
- * Forbid anonymous values as default exports.
861
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-anonymous-default-export.md
862
- */
863
- 'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>
864
- /**
865
- * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
866
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-commonjs.md
867
- */
868
- 'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>
869
- /**
870
- * Forbid a module from importing a module with a dependency path back to itself.
871
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-cycle.md
872
- */
873
- 'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>
874
- /**
875
- * Forbid default exports.
876
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-default-export.md
877
- */
878
- 'import/no-default-export'?: Linter.RuleEntry<[]>
879
- /**
880
- * Forbid imported names marked with `@deprecated` documentation tag.
881
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-deprecated.md
882
- */
883
- 'import/no-deprecated'?: Linter.RuleEntry<[]>
884
- /**
885
- * Forbid repeated import of the same module in multiple places.
886
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-duplicates.md
887
- */
888
- 'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>
889
- /**
890
- * Forbid `require()` calls with expressions.
891
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-dynamic-require.md
892
- */
893
- 'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>
894
- /**
895
- * Forbid empty named import blocks.
896
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-empty-named-blocks.md
897
- */
898
- 'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>
899
- /**
900
- * Forbid the use of extraneous packages.
901
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-extraneous-dependencies.md
902
- */
903
- 'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>
904
- /**
905
- * Forbid import statements with CommonJS module.exports.
906
- */
907
- 'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>
908
- /**
909
- * Forbid importing the submodules of other modules.
910
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-internal-modules.md
911
- */
912
- 'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>
913
- /**
914
- * Forbid the use of mutable exports with `var` or `let`.
915
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-mutable-exports.md
916
- */
917
- 'import/no-mutable-exports'?: Linter.RuleEntry<[]>
918
- /**
919
- * Forbid use of exported name as identifier of default export.
920
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-named-as-default.md
921
- */
922
- 'import/no-named-as-default'?: Linter.RuleEntry<[]>
923
- /**
924
- * Forbid use of exported name as property of default export.
925
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-named-as-default-member.md
926
- */
927
- 'import/no-named-as-default-member'?: Linter.RuleEntry<[]>
928
- /**
929
- * Forbid named default exports.
930
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-named-default.md
931
- */
932
- 'import/no-named-default'?: Linter.RuleEntry<[]>
933
- /**
934
- * Forbid named exports.
935
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-named-export.md
936
- */
937
- 'import/no-named-export'?: Linter.RuleEntry<[]>
938
- /**
939
- * Forbid namespace (a.k.a. "wildcard" `*`) imports.
940
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-namespace.md
941
- */
942
- 'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>
943
- /**
944
- * Forbid Node.js builtin modules.
945
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-nodejs-modules.md
946
- */
947
- 'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>
948
- /**
949
- * Forbid importing packages through relative paths.
950
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-relative-packages.md
951
- */
952
- 'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>
953
- /**
954
- * Forbid importing modules from parent directories.
955
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-relative-parent-imports.md
956
- */
957
- 'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>
958
- /**
959
- * Enforce which files can be imported in a given folder.
960
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-restricted-paths.md
961
- */
962
- 'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>
963
- /**
964
- * Forbid a module from importing itself.
965
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-self-import.md
966
- */
967
- 'import/no-self-import'?: Linter.RuleEntry<[]>
968
- /**
969
- * Forbid unassigned imports
970
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-unassigned-import.md
971
- */
972
- 'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>
973
- /**
974
- * Ensure imports point to a file/module that can be resolved.
975
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-unresolved.md
976
- */
977
- 'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>
978
- /**
979
- * Forbid modules without exports, or exports without matching import in another module.
980
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-unused-modules.md
981
- */
982
- 'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>
983
- /**
984
- * Forbid unnecessary path segments in import and require statements.
985
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-useless-path-segments.md
986
- */
987
- 'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>
988
- /**
989
- * Forbid webpack loader syntax in imports.
990
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/no-webpack-loader-syntax.md
991
- */
992
- 'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>
993
- /**
994
- * Enforce a convention in module import order.
995
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/order.md
996
- */
997
- 'import/order'?: Linter.RuleEntry<ImportOrder>
998
- /**
999
- * Prefer a default export if module exports a single name or multiple names.
1000
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/prefer-default-export.md
1001
- */
1002
- 'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>
1003
- /**
1004
- * Forbid potentially ambiguous parse goal (`script` vs. `module`).
1005
- * @see https://github.com/import-js/eslint-plugin-import/blob/v2.29.1/docs/rules/unambiguous.md
1006
- */
1007
- 'import/unambiguous'?: Linter.RuleEntry<[]>
1008
783
  /**
1009
784
  * Enforce emojis are wrapped in `<span>` and provide screenreader access.
1010
785
  * @see https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/HEAD/docs/rules/accessible-emoji.md
@@ -3952,230 +3727,6 @@ type TypescriptEslintUnifiedSignatures = []|[{
3952
3727
 
3953
3728
  ignoreDifferentlyNamedParameters?: boolean
3954
3729
  }]
3955
- // ----- import/consistent-type-specifier-style -----
3956
- type ImportConsistentTypeSpecifierStyle = []|[("prefer-inline" | "prefer-top-level")]
3957
- // ----- import/dynamic-import-chunkname -----
3958
- type ImportDynamicImportChunkname = []|[{
3959
- importFunctions?: string[]
3960
- webpackChunknameFormat?: string
3961
- [k: string]: unknown | undefined
3962
- }]
3963
- // ----- import/extensions -----
3964
- type ImportExtensions = ([]|[("always" | "ignorePackages" | "never")] | []|[("always" | "ignorePackages" | "never")]|[("always" | "ignorePackages" | "never"), {
3965
- pattern?: {
3966
- [k: string]: ("always" | "ignorePackages" | "never")
3967
- }
3968
- ignorePackages?: boolean
3969
- [k: string]: unknown | undefined
3970
- }] | []|[{
3971
- pattern?: {
3972
- [k: string]: ("always" | "ignorePackages" | "never")
3973
- }
3974
- ignorePackages?: boolean
3975
- [k: string]: unknown | undefined
3976
- }] | []|[{
3977
- [k: string]: ("always" | "ignorePackages" | "never")
3978
- }] | []|[("always" | "ignorePackages" | "never")]|[("always" | "ignorePackages" | "never"), {
3979
- [k: string]: ("always" | "ignorePackages" | "never")
3980
- }])
3981
- // ----- import/first -----
3982
- type ImportFirst = []|[("absolute-first" | "disable-absolute-first")]
3983
- // ----- import/imports-first -----
3984
- type ImportImportsFirst = []|[("absolute-first" | "disable-absolute-first")]
3985
- // ----- import/max-dependencies -----
3986
- type ImportMaxDependencies = []|[{
3987
- max?: number
3988
- ignoreTypeImports?: boolean
3989
- }]
3990
- // ----- import/named -----
3991
- type ImportNamed = []|[{
3992
- commonjs?: boolean
3993
- }]
3994
- // ----- import/namespace -----
3995
- type ImportNamespace = []|[{
3996
-
3997
- allowComputed?: boolean
3998
- }]
3999
- // ----- import/newline-after-import -----
4000
- type ImportNewlineAfterImport = []|[{
4001
- count?: number
4002
- exactCount?: boolean
4003
- considerComments?: boolean
4004
- }]
4005
- // ----- import/no-absolute-path -----
4006
- type ImportNoAbsolutePath = []|[{
4007
- commonjs?: boolean
4008
- amd?: boolean
4009
- esmodule?: boolean
4010
-
4011
- ignore?: [string, ...(string)[]]
4012
- }]
4013
- // ----- import/no-anonymous-default-export -----
4014
- type ImportNoAnonymousDefaultExport = []|[{
4015
-
4016
- allowArray?: boolean
4017
-
4018
- allowArrowFunction?: boolean
4019
-
4020
- allowCallExpression?: boolean
4021
-
4022
- allowAnonymousClass?: boolean
4023
-
4024
- allowAnonymousFunction?: boolean
4025
-
4026
- allowLiteral?: boolean
4027
-
4028
- allowObject?: boolean
4029
-
4030
- allowNew?: boolean
4031
- }]
4032
- // ----- import/no-commonjs -----
4033
- type ImportNoCommonjs = ([]|["allow-primitive-modules"] | []|[{
4034
- allowPrimitiveModules?: boolean
4035
- allowRequire?: boolean
4036
- allowConditionalRequire?: boolean
4037
- }])
4038
- // ----- import/no-cycle -----
4039
- type ImportNoCycle = []|[{
4040
- commonjs?: boolean
4041
- amd?: boolean
4042
- esmodule?: boolean
4043
-
4044
- ignore?: [string, ...(string)[]]
4045
- maxDepth?: (number | "∞")
4046
-
4047
- ignoreExternal?: boolean
4048
-
4049
- allowUnsafeDynamicCyclicDependency?: boolean
4050
- }]
4051
- // ----- import/no-duplicates -----
4052
- type ImportNoDuplicates = []|[{
4053
- considerQueryString?: boolean
4054
- "prefer-inline"?: boolean
4055
- }]
4056
- // ----- import/no-dynamic-require -----
4057
- type ImportNoDynamicRequire = []|[{
4058
- esmodule?: boolean
4059
- }]
4060
- // ----- import/no-extraneous-dependencies -----
4061
- type ImportNoExtraneousDependencies = []|[{
4062
- devDependencies?: (boolean | unknown[])
4063
- optionalDependencies?: (boolean | unknown[])
4064
- peerDependencies?: (boolean | unknown[])
4065
- bundledDependencies?: (boolean | unknown[])
4066
- packageDir?: (string | unknown[])
4067
- includeInternal?: boolean
4068
- includeTypes?: boolean
4069
- }]
4070
- // ----- import/no-import-module-exports -----
4071
- type ImportNoImportModuleExports = []|[{
4072
- exceptions?: unknown[]
4073
- }]
4074
- // ----- import/no-internal-modules -----
4075
- type ImportNoInternalModules = []|[({
4076
- allow?: string[]
4077
- } | {
4078
- forbid?: string[]
4079
- })]
4080
- // ----- import/no-namespace -----
4081
- type ImportNoNamespace = []|[{
4082
- ignore?: string[]
4083
- [k: string]: unknown | undefined
4084
- }]
4085
- // ----- import/no-nodejs-modules -----
4086
- type ImportNoNodejsModules = []|[{
4087
- allow?: string[]
4088
- }]
4089
- // ----- import/no-relative-packages -----
4090
- type ImportNoRelativePackages = []|[{
4091
- commonjs?: boolean
4092
- amd?: boolean
4093
- esmodule?: boolean
4094
-
4095
- ignore?: [string, ...(string)[]]
4096
- }]
4097
- // ----- import/no-relative-parent-imports -----
4098
- type ImportNoRelativeParentImports = []|[{
4099
- commonjs?: boolean
4100
- amd?: boolean
4101
- esmodule?: boolean
4102
-
4103
- ignore?: [string, ...(string)[]]
4104
- }]
4105
- // ----- import/no-restricted-paths -----
4106
- type ImportNoRestrictedPaths = []|[{
4107
-
4108
- zones?: [{
4109
- target?: (string | string[])
4110
- from?: (string | string[])
4111
- except?: string[]
4112
- message?: string
4113
- }, ...({
4114
- target?: (string | string[])
4115
- from?: (string | string[])
4116
- except?: string[]
4117
- message?: string
4118
- })[]]
4119
- basePath?: string
4120
- }]
4121
- // ----- import/no-unassigned-import -----
4122
- type ImportNoUnassignedImport = []|[{
4123
- devDependencies?: (boolean | unknown[])
4124
- optionalDependencies?: (boolean | unknown[])
4125
- peerDependencies?: (boolean | unknown[])
4126
- allow?: string[]
4127
- }]
4128
- // ----- import/no-unresolved -----
4129
- type ImportNoUnresolved = []|[{
4130
- commonjs?: boolean
4131
- amd?: boolean
4132
- esmodule?: boolean
4133
-
4134
- ignore?: [string, ...(string)[]]
4135
- caseSensitive?: boolean
4136
- caseSensitiveStrict?: boolean
4137
- }]
4138
- // ----- import/no-unused-modules -----
4139
- type ImportNoUnusedModules = []|[({
4140
- unusedExports: true
4141
- src?: {
4142
- [k: string]: unknown | undefined
4143
- }
4144
- [k: string]: unknown | undefined
4145
- } | {
4146
- missingExports: true
4147
- [k: string]: unknown | undefined
4148
- })]
4149
- // ----- import/no-useless-path-segments -----
4150
- type ImportNoUselessPathSegments = []|[{
4151
- commonjs?: boolean
4152
- noUselessIndex?: boolean
4153
- }]
4154
- // ----- import/order -----
4155
- type ImportOrder = []|[{
4156
- groups?: unknown[]
4157
- pathGroupsExcludedImportTypes?: unknown[]
4158
- distinctGroup?: boolean
4159
- pathGroups?: {
4160
- pattern: string
4161
- patternOptions?: {
4162
- [k: string]: unknown | undefined
4163
- }
4164
- group: ("builtin" | "external" | "internal" | "unknown" | "parent" | "sibling" | "index" | "object" | "type")
4165
- position?: ("after" | "before")
4166
- }[]
4167
- "newlines-between"?: ("ignore" | "always" | "always-and-inside-groups" | "never")
4168
- alphabetize?: {
4169
- caseInsensitive?: boolean
4170
- order?: ("ignore" | "asc" | "desc")
4171
- orderImportKind?: ("ignore" | "asc" | "desc")
4172
- }
4173
- warnOnUnassignedImports?: boolean
4174
- }]
4175
- // ----- import/prefer-default-export -----
4176
- type ImportPreferDefaultExport = []|[{
4177
- target?: ("single" | "any")
4178
- }]
4179
3730
  // ----- prettier/prettier -----
4180
3731
  type PrettierPrettier = []|[{
4181
3732
  [k: string]: unknown | undefined