@hexadrop/eslint-config 1.0.3 → 1.0.5

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
@@ -591,238 +591,238 @@ interface RuleOptions {
591
591
  'import-unused/no-unused-vars'?: Linter.RuleEntry<ImportUnusedNoUnusedVars>;
592
592
  /**
593
593
  * Enforce or ban the use of inline type-only markers for named imports.
594
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/consistent-type-specifier-style.md
594
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/consistent-type-specifier-style.md
595
595
  */
596
596
  'import/consistent-type-specifier-style'?: Linter.RuleEntry<ImportConsistentTypeSpecifierStyle>;
597
597
  /**
598
598
  * Ensure a default export is present, given a default import.
599
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/default.md
599
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/default.md
600
600
  */
601
601
  'import/default'?: Linter.RuleEntry<[]>;
602
602
  /**
603
603
  * Enforce a leading comment with the webpackChunkName for dynamic imports.
604
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/dynamic-import-chunkname.md
604
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/dynamic-import-chunkname.md
605
605
  */
606
606
  'import/dynamic-import-chunkname'?: Linter.RuleEntry<ImportDynamicImportChunkname>;
607
607
  /**
608
608
  * Forbid any invalid exports, i.e. re-export of the same name.
609
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/export.md
609
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/export.md
610
610
  */
611
611
  'import/export'?: Linter.RuleEntry<[]>;
612
612
  /**
613
613
  * Ensure all exports appear after other statements.
614
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/exports-last.md
614
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/exports-last.md
615
615
  */
616
616
  'import/exports-last'?: Linter.RuleEntry<[]>;
617
617
  /**
618
618
  * Ensure consistent use of file extension within the import path.
619
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/extensions.md
619
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/extensions.md
620
620
  */
621
621
  'import/extensions'?: Linter.RuleEntry<ImportExtensions>;
622
622
  /**
623
623
  * Ensure all imports appear before other statements.
624
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/first.md
624
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/first.md
625
625
  */
626
626
  'import/first'?: Linter.RuleEntry<ImportFirst>;
627
627
  /**
628
628
  * Prefer named exports to be grouped together in a single export declaration.
629
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/group-exports.md
629
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/group-exports.md
630
630
  */
631
631
  'import/group-exports'?: Linter.RuleEntry<[]>;
632
632
  /**
633
633
  * Replaced by `import-x/first`.
634
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/imports-first.md
634
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/imports-first.md
635
635
  * @deprecated
636
636
  */
637
637
  'import/imports-first'?: Linter.RuleEntry<ImportImportsFirst>;
638
638
  /**
639
639
  * Enforce the maximum number of dependencies a module can have.
640
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/max-dependencies.md
640
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/max-dependencies.md
641
641
  */
642
642
  'import/max-dependencies'?: Linter.RuleEntry<ImportMaxDependencies>;
643
643
  /**
644
644
  * Ensure named imports correspond to a named export in the remote file.
645
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/named.md
645
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/named.md
646
646
  */
647
647
  'import/named'?: Linter.RuleEntry<ImportNamed>;
648
648
  /**
649
649
  * Ensure imported namespaces contain dereferenced properties as they are dereferenced.
650
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/namespace.md
650
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/namespace.md
651
651
  */
652
652
  'import/namespace'?: Linter.RuleEntry<ImportNamespace>;
653
653
  /**
654
654
  * Enforce a newline after import statements.
655
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/newline-after-import.md
655
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/newline-after-import.md
656
656
  */
657
657
  'import/newline-after-import'?: Linter.RuleEntry<ImportNewlineAfterImport>;
658
658
  /**
659
659
  * Forbid import of modules using absolute paths.
660
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-absolute-path.md
660
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-absolute-path.md
661
661
  */
662
662
  'import/no-absolute-path'?: Linter.RuleEntry<ImportNoAbsolutePath>;
663
663
  /**
664
664
  * Forbid AMD `require` and `define` calls.
665
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-amd.md
665
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-amd.md
666
666
  */
667
667
  'import/no-amd'?: Linter.RuleEntry<[]>;
668
668
  /**
669
669
  * Forbid anonymous values as default exports.
670
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-anonymous-default-export.md
670
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-anonymous-default-export.md
671
671
  */
672
672
  'import/no-anonymous-default-export'?: Linter.RuleEntry<ImportNoAnonymousDefaultExport>;
673
673
  /**
674
674
  * Forbid CommonJS `require` calls and `module.exports` or `exports.*`.
675
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-commonjs.md
675
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-commonjs.md
676
676
  */
677
677
  'import/no-commonjs'?: Linter.RuleEntry<ImportNoCommonjs>;
678
678
  /**
679
679
  * Forbid a module from importing a module with a dependency path back to itself.
680
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-cycle.md
680
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-cycle.md
681
681
  */
682
682
  'import/no-cycle'?: Linter.RuleEntry<ImportNoCycle>;
683
683
  /**
684
684
  * Forbid default exports.
685
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-default-export.md
685
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-default-export.md
686
686
  */
687
687
  'import/no-default-export'?: Linter.RuleEntry<[]>;
688
688
  /**
689
689
  * Forbid imported names marked with `@deprecated` documentation tag.
690
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-deprecated.md
690
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-deprecated.md
691
691
  */
692
692
  'import/no-deprecated'?: Linter.RuleEntry<[]>;
693
693
  /**
694
694
  * Forbid repeated import of the same module in multiple places.
695
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-duplicates.md
695
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-duplicates.md
696
696
  */
697
697
  'import/no-duplicates'?: Linter.RuleEntry<ImportNoDuplicates>;
698
698
  /**
699
699
  * Forbid `require()` calls with expressions.
700
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-dynamic-require.md
700
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-dynamic-require.md
701
701
  */
702
702
  'import/no-dynamic-require'?: Linter.RuleEntry<ImportNoDynamicRequire>;
703
703
  /**
704
704
  * Forbid empty named import blocks.
705
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-empty-named-blocks.md
705
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-empty-named-blocks.md
706
706
  */
707
707
  'import/no-empty-named-blocks'?: Linter.RuleEntry<[]>;
708
708
  /**
709
709
  * Forbid the use of extraneous packages.
710
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-extraneous-dependencies.md
710
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-extraneous-dependencies.md
711
711
  */
712
712
  'import/no-extraneous-dependencies'?: Linter.RuleEntry<ImportNoExtraneousDependencies>;
713
713
  /**
714
714
  * Forbid import statements with CommonJS module.exports.
715
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-import-module-exports.md
715
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-import-module-exports.md
716
716
  */
717
717
  'import/no-import-module-exports'?: Linter.RuleEntry<ImportNoImportModuleExports>;
718
718
  /**
719
719
  * Forbid importing the submodules of other modules.
720
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-internal-modules.md
720
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-internal-modules.md
721
721
  */
722
722
  'import/no-internal-modules'?: Linter.RuleEntry<ImportNoInternalModules>;
723
723
  /**
724
724
  * Forbid the use of mutable exports with `var` or `let`.
725
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-mutable-exports.md
725
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-mutable-exports.md
726
726
  */
727
727
  'import/no-mutable-exports'?: Linter.RuleEntry<[]>;
728
728
  /**
729
729
  * Forbid use of exported name as identifier of default export.
730
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-named-as-default.md
730
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-named-as-default.md
731
731
  */
732
732
  'import/no-named-as-default'?: Linter.RuleEntry<[]>;
733
733
  /**
734
734
  * Forbid use of exported name as property of default export.
735
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-named-as-default-member.md
735
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-named-as-default-member.md
736
736
  */
737
737
  'import/no-named-as-default-member'?: Linter.RuleEntry<[]>;
738
738
  /**
739
739
  * Forbid named default exports.
740
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-named-default.md
740
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-named-default.md
741
741
  */
742
742
  'import/no-named-default'?: Linter.RuleEntry<[]>;
743
743
  /**
744
744
  * Forbid named exports.
745
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-named-export.md
745
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-named-export.md
746
746
  */
747
747
  'import/no-named-export'?: Linter.RuleEntry<[]>;
748
748
  /**
749
749
  * Forbid namespace (a.k.a. "wildcard" `*`) imports.
750
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-namespace.md
750
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-namespace.md
751
751
  */
752
752
  'import/no-namespace'?: Linter.RuleEntry<ImportNoNamespace>;
753
753
  /**
754
754
  * Forbid Node.js builtin modules.
755
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-nodejs-modules.md
755
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-nodejs-modules.md
756
756
  */
757
757
  'import/no-nodejs-modules'?: Linter.RuleEntry<ImportNoNodejsModules>;
758
758
  /**
759
759
  * Forbid importing packages through relative paths.
760
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-relative-packages.md
760
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-relative-packages.md
761
761
  */
762
762
  'import/no-relative-packages'?: Linter.RuleEntry<ImportNoRelativePackages>;
763
763
  /**
764
764
  * Forbid importing modules from parent directories.
765
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-relative-parent-imports.md
765
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-relative-parent-imports.md
766
766
  */
767
767
  'import/no-relative-parent-imports'?: Linter.RuleEntry<ImportNoRelativeParentImports>;
768
768
  /**
769
769
  * Forbid importing a default export by a different name.
770
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-rename-default.md
770
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-rename-default.md
771
771
  */
772
772
  'import/no-rename-default'?: Linter.RuleEntry<ImportNoRenameDefault>;
773
773
  /**
774
774
  * Enforce which files can be imported in a given folder.
775
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-restricted-paths.md
775
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-restricted-paths.md
776
776
  */
777
777
  'import/no-restricted-paths'?: Linter.RuleEntry<ImportNoRestrictedPaths>;
778
778
  /**
779
779
  * Forbid a module from importing itself.
780
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-self-import.md
780
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-self-import.md
781
781
  */
782
782
  'import/no-self-import'?: Linter.RuleEntry<[]>;
783
783
  /**
784
784
  * Forbid unassigned imports.
785
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-unassigned-import.md
785
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-unassigned-import.md
786
786
  */
787
787
  'import/no-unassigned-import'?: Linter.RuleEntry<ImportNoUnassignedImport>;
788
788
  /**
789
789
  * Ensure imports point to a file/module that can be resolved.
790
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-unresolved.md
790
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-unresolved.md
791
791
  */
792
792
  'import/no-unresolved'?: Linter.RuleEntry<ImportNoUnresolved>;
793
793
  /**
794
794
  * Forbid modules without exports, or exports without matching import in another module.
795
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-unused-modules.md
795
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-unused-modules.md
796
796
  */
797
797
  'import/no-unused-modules'?: Linter.RuleEntry<ImportNoUnusedModules>;
798
798
  /**
799
799
  * Forbid unnecessary path segments in import and require statements.
800
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-useless-path-segments.md
800
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-useless-path-segments.md
801
801
  */
802
802
  'import/no-useless-path-segments'?: Linter.RuleEntry<ImportNoUselessPathSegments>;
803
803
  /**
804
804
  * Forbid webpack loader syntax in imports.
805
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/no-webpack-loader-syntax.md
805
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/no-webpack-loader-syntax.md
806
806
  */
807
807
  'import/no-webpack-loader-syntax'?: Linter.RuleEntry<[]>;
808
808
  /**
809
809
  * Enforce a convention in module import order.
810
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/order.md
810
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/order.md
811
811
  */
812
812
  'import/order'?: Linter.RuleEntry<ImportOrder>;
813
813
  /**
814
814
  * Prefer a default export if module exports a single name or multiple names.
815
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/prefer-default-export.md
815
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/prefer-default-export.md
816
816
  */
817
817
  'import/prefer-default-export'?: Linter.RuleEntry<ImportPreferDefaultExport>;
818
818
  /**
819
819
  * Enforce using namespace imports for specific modules, like `react`/`react-dom`, etc.
820
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/prefer-namespace-import.md
820
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/prefer-namespace-import.md
821
821
  */
822
822
  'import/prefer-namespace-import'?: Linter.RuleEntry<ImportPreferNamespaceImport>;
823
823
  /**
824
824
  * Forbid potentially ambiguous parse goal (`script` vs. `module`).
825
- * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.0/docs/rules/unambiguous.md
825
+ * @see https://github.com/un-ts/eslint-plugin-import-x/blob/v4.17.1/docs/rules/unambiguous.md
826
826
  */
827
827
  'import/unambiguous'?: Linter.RuleEntry<[]>;
828
828
  /**
@@ -1390,7 +1390,7 @@ interface RuleOptions {
1390
1390
  * Disallow expressions where the operation doesn't affect the value
1391
1391
  * @see https://eslint.org/docs/latest/rules/no-constant-binary-expression
1392
1392
  */
1393
- 'no-constant-binary-expression'?: Linter.RuleEntry<[]>;
1393
+ 'no-constant-binary-expression'?: Linter.RuleEntry<NoConstantBinaryExpression>;
1394
1394
  /**
1395
1395
  * Disallow constant expressions in conditions
1396
1396
  * @see https://eslint.org/docs/latest/rules/no-constant-condition
@@ -7552,6 +7552,9 @@ type NoConfusingArrow = [] | [{
7552
7552
  }]; // ----- no-console -----
7553
7553
  type NoConsole = [] | [{
7554
7554
  allow?: [string, ...(string)[]];
7555
+ }]; // ----- no-constant-binary-expression -----
7556
+ type NoConstantBinaryExpression = [] | [{
7557
+ checkRelationalComparisons?: boolean;
7555
7558
  }]; // ----- no-constant-condition -----
7556
7559
  type NoConstantCondition = [] | [{
7557
7560
  checkLoops?: ("all" | "allExceptWhileTrue" | "none" | true | false);
package/dist/index.mjs CHANGED
@@ -1514,13 +1514,15 @@ async function stylistic(options) {
1514
1514
  "unicorn/dom-node-dataset": "off",
1515
1515
  "unicorn/name-replacements": ["error", { allowList: {
1516
1516
  env: true,
1517
- props: true
1517
+ props: true,
1518
+ Props: true
1518
1519
  } }],
1519
1520
  "unicorn/no-array-reduce": "off",
1520
1521
  "unicorn/no-nested-ternary": "off",
1521
1522
  "unicorn/no-nonstandard-builtin-properties": "off",
1522
1523
  "unicorn/no-static-only-class": "off",
1523
- "unicorn/prefer-includes-over-repeated-comparisons": "off"
1524
+ "unicorn/prefer-includes-over-repeated-comparisons": "off",
1525
+ "unicorn/prefer-number-coercion": "off"
1524
1526
  }
1525
1527
  });
1526
1528
  if (markdown) config.push({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexadrop/eslint-config",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Opinionated ESLint ruleset designed for large teams and projects",
5
5
  "keywords": [
6
6
  "lint",
@@ -56,7 +56,7 @@
56
56
  "eslint-parser-plain": "0.1.1",
57
57
  "eslint-plugin-astro": "2.1.1",
58
58
  "eslint-plugin-format": "2.0.1",
59
- "eslint-plugin-import-x": "4.17.0",
59
+ "eslint-plugin-import-x": "4.17.1",
60
60
  "eslint-plugin-jsonc": "3.2.0",
61
61
  "eslint-plugin-n": "18.1.0",
62
62
  "eslint-plugin-perfectionist": "5.9.1",
@@ -69,7 +69,7 @@
69
69
  "globals": "17.7.0",
70
70
  "jsonc-eslint-parser": "3.1.0",
71
71
  "local-pkg": "1.2.1",
72
- "prettier": "3.8.4",
72
+ "prettier": "3.9.1",
73
73
  "prettier-plugin-astro": "0.14.1",
74
74
  "tslib": "2.8.1"
75
75
  },
@@ -78,8 +78,8 @@
78
78
  "@eslint/config-inspector": "3.0.4",
79
79
  "@hexadrop/tsconfig": "0.0.5",
80
80
  "@types/bun": "1.3.14",
81
- "astro": "7.0.2",
82
- "eslint": "10.5.0",
81
+ "astro": "7.0.3",
82
+ "eslint": "10.6.0",
83
83
  "eslint-typegen": "2.3.1",
84
84
  "jiti": "2.7.0",
85
85
  "react": "19.2.7",