@adbayb/stack 0.0.0-next-5671759 → 0.0.0-next-9c647dc

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.
@@ -46,11 +46,19 @@ export default tseslint.config(
46
46
  importPlugin.flatConfigs.typescript,
47
47
  {
48
48
  files: ["**/*.{js,ts,jsx,tsx,cjs,cts,mjs,mts}"],
49
+ languageOptions: {
50
+ parser: tseslint.parser,
51
+ parserOptions: {
52
+ project: "./tsconfig.json",
53
+ tsconfigRootDir: CWD,
54
+ },
55
+ },
49
56
  plugins: {
50
57
  import: importPlugin,
51
58
  jsdoc: jsdocPlugin,
52
59
  sonarjs: sonarjsPlugin,
53
60
  "sort-keys-custom-order": sortKeysCustomOrderPlugin,
61
+ "@typescript-eslint": tseslint.plugin,
54
62
  },
55
63
  settings: {
56
64
  "import/resolver": {
@@ -61,6 +69,7 @@ export default tseslint.config(
61
69
  rules: {
62
70
  //#region eslint
63
71
  "constructor-super": "error",
72
+ eqeqeq: "error",
64
73
  "for-direction": "error",
65
74
  "getter-return": "error",
66
75
  "no-alert": "error",
@@ -76,7 +85,6 @@ export default tseslint.config(
76
85
  "no-debugger": "error",
77
86
  "no-delete-var": "error",
78
87
  "no-dupe-args": "error",
79
- "no-dupe-class-members": "error",
80
88
  "no-dupe-else-if": "error",
81
89
  "no-dupe-keys": "error",
82
90
  "no-duplicate-case": "error",
@@ -92,7 +100,6 @@ export default tseslint.config(
92
100
  "no-import-assign": "error",
93
101
  "no-invalid-regexp": "error",
94
102
  "no-irregular-whitespace": "error",
95
- "no-loss-of-precision": "error",
96
103
  "no-misleading-character-class": "error",
97
104
  "no-new-native-nonconstructor": "error",
98
105
  "no-nonoctal-decimal-escape": "error",
@@ -101,7 +108,14 @@ export default tseslint.config(
101
108
  "no-prototype-builtins": "error",
102
109
  "no-redeclare": "error",
103
110
  "no-regex-spaces": "error",
104
- "no-return-await": "error",
111
+ "no-restricted-syntax": [
112
+ "error",
113
+ {
114
+ // https://medium.com/@hbarcelos/why-i-banned-null-from-my-js-code-and-why-you-should-too-13df90323cfa
115
+ selector: "Literal[raw='null']",
116
+ message: "Use undefined instead of null",
117
+ },
118
+ ],
105
119
  "no-self-assign": "error",
106
120
  "no-setter-return": "error",
107
121
  "no-shadow-restricted-names": "error",
@@ -115,7 +129,6 @@ export default tseslint.config(
115
129
  "no-unsafe-optional-chaining": "error",
116
130
  "no-unused-labels": "error",
117
131
  "no-unused-private-class-members": "error",
118
- "no-unused-vars": "error",
119
132
  "no-useless-backreference": "error",
120
133
  "no-useless-catch": "error",
121
134
  "no-useless-escape": "error",
@@ -379,7 +392,6 @@ export default tseslint.config(
379
392
  "sonarjs/no-empty-after-reluctant": "error",
380
393
  "sonarjs/no-empty-alternatives": "error",
381
394
  "sonarjs/no-empty-collection": "error",
382
- "sonarjs/no-empty-function": "error",
383
395
  "sonarjs/no-empty-group": "error",
384
396
  "sonarjs/no-empty-test-file": "error",
385
397
  "sonarjs/no-equals-in-for-termination": "error",
@@ -424,42 +436,27 @@ export default tseslint.config(
424
436
  "sonarjs/no-os-command-from-path": "error",
425
437
  "sonarjs/no-parameter-reassignment": "error",
426
438
  "sonarjs/no-primitive-wrappers": "error",
427
- "sonarjs/no-redeclare": "error",
428
439
  "sonarjs/no-redundant-assignments": "error",
429
440
  "sonarjs/no-redundant-boolean": "error",
430
441
  "sonarjs/no-redundant-jump": "error",
431
- // Breakpoint start from no-reference-error (https://github.com/SonarSource/SonarJS/blob/master/packages/jsts/src/rules/README.md)
432
- // Remove redundant rules with TS + import + ESLint
433
442
  "sonarjs/no-referrer-policy": "error",
434
443
  "sonarjs/no-same-argument-assert": "error",
435
- "sonarjs/no-same-line-conditional": "error",
436
444
  "sonarjs/no-selector-parameter": "error",
437
445
  "sonarjs/no-self-compare": "error",
438
446
  "sonarjs/no-self-import": "error",
439
- "sonarjs/no-skipped-test": "error",
440
447
  "sonarjs/no-small-switch": "error",
441
448
  "sonarjs/no-table-as-layout": "error",
442
- "sonarjs/no-throw-literal": "error",
443
- "sonarjs/no-try-promise": "error",
444
449
  "sonarjs/no-undefined-argument": "error",
445
450
  "sonarjs/no-unenclosed-multiline-block": "error",
446
451
  "sonarjs/no-uniq-key": "error",
447
- "sonarjs/no-unknown-property": "error",
448
- "sonarjs/no-unreachable": "error",
449
452
  "sonarjs/no-unsafe-unzip": "error",
450
453
  "sonarjs/no-unstable-nested-components": "error",
451
454
  "sonarjs/no-unthrown-error": "error",
452
455
  "sonarjs/no-unused-collection": "error",
453
- "sonarjs/no-unused-expressions": "error",
454
- "sonarjs/no-unused-private-class-members": "error",
455
- "sonarjs/no-use-of-empty-return-value": "error",
456
456
  "sonarjs/no-useless-call": "error",
457
- "sonarjs/no-useless-catch": "error",
458
- "sonarjs/no-useless-constructor": "error",
459
457
  "sonarjs/no-useless-increment": "error",
460
458
  "sonarjs/no-useless-intersection": "error",
461
459
  "sonarjs/no-useless-react-setstate": "error",
462
- "sonarjs/no-var": "error",
463
460
  "sonarjs/no-vue-bypass-sanitization": "error",
464
461
  "sonarjs/no-weak-cipher": "error",
465
462
  "sonarjs/no-weak-keys": "error",
@@ -470,10 +467,10 @@ export default tseslint.config(
470
467
  "sonarjs/post-message": "error",
471
468
  "sonarjs/prefer-default-last": "error",
472
469
  "sonarjs/prefer-enum-initializers": "error",
473
- "sonarjs/prefer-for-of": "error",
474
470
  "sonarjs/prefer-function-type": "error",
471
+ "sonarjs/prefer-immediate-return": "error",
475
472
  "sonarjs/prefer-namespace-keyword": "error",
476
- "sonarjs/prefer-nullish-coalescing": "error",
473
+ "sonarjs/prefer-object-literal": "error",
477
474
  "sonarjs/prefer-object-spread": "error",
478
475
  "sonarjs/prefer-promise-shorthand": "error",
479
476
  "sonarjs/prefer-single-boolean-return": "error",
@@ -486,38 +483,37 @@ export default tseslint.config(
486
483
  "sonarjs/public-static-readonly": "error",
487
484
  "sonarjs/publicly-writable-directories": "error",
488
485
  "sonarjs/reduce-initial-value": "error",
489
- "sonarjs/redundant-type-aliases": "error",
490
- "sonarjs/regex-complexity": "error",
491
486
  "sonarjs/session-regeneration": "error",
492
487
  "sonarjs/single-char-in-character-classes": "error",
493
488
  "sonarjs/single-character-alternation": "error",
494
- "sonarjs/sonar-block-scoped-var": "error",
495
- "sonarjs/sonar-max-params": "error",
489
+ "sonarjs/sonar-jsx-no-leaked-render": "error",
490
+ "sonarjs/sonar-max-lines": ["error", { maximum: 1000 }],
491
+ "sonarjs/sonar-max-lines-per-function": ["error", { maximum: 200 }],
492
+ "sonarjs/sonar-max-params": ["error", { max: 4 }],
496
493
  "sonarjs/sonar-no-control-regex": "error",
497
- "sonarjs/sonar-no-dupe-keys": "error",
498
494
  "sonarjs/sonar-no-empty-character-class": "error",
499
495
  "sonarjs/sonar-no-fallthrough": "error",
500
496
  "sonarjs/sonar-no-invalid-regexp": "error",
497
+ "sonarjs/sonar-no-magic-numbers": "error",
501
498
  "sonarjs/sonar-no-misleading-character-class": "error",
502
499
  "sonarjs/sonar-no-regex-spaces": "error",
503
- "sonarjs/sonar-no-unused-vars": "error",
504
- "sonarjs/sonar-prefer-optional-chain": "error",
500
+ "sonarjs/sonar-no-unused-class-component-methods": "error",
505
501
  "sonarjs/sonar-prefer-regexp-exec": "error",
506
502
  "sonarjs/sql-queries": "error",
507
503
  "sonarjs/stable-tests": "error",
508
504
  "sonarjs/stateful-regex": "error",
509
505
  "sonarjs/strict-transport-security": "error",
510
506
  "sonarjs/super-invocation": "error",
511
- "sonarjs/table-header-reference": "error",
507
+ "sonarjs/switch-without-default": "error",
512
508
  "sonarjs/table-header": "error",
509
+ "sonarjs/table-header-reference": "error",
513
510
  "sonarjs/test-check-exception": "error",
514
511
  "sonarjs/todo-tag": "warn",
512
+ "sonarjs/unicode-aware-regex": "error",
515
513
  "sonarjs/unnecessary-character-escapes": "error",
516
- "sonarjs/unused-import": "error",
517
514
  "sonarjs/unused-named-groups": "error",
518
515
  "sonarjs/unverified-certificate": "error",
519
516
  "sonarjs/unverified-hostname": "error",
520
- "sonarjs/updated-const-var": "error",
521
517
  "sonarjs/updated-loop-counter": "error",
522
518
  "sonarjs/use-isnan": "error",
523
519
  "sonarjs/use-type-alias": "error",
@@ -554,149 +550,7 @@ export default tseslint.config(
554
550
  },
555
551
  ],
556
552
  //#endregion
557
- },
558
- },
559
- {
560
- files: ["**/*.{jsx,tsx}"],
561
- plugins: {
562
- react: reactPlugin,
563
- "react-hooks": reactHooksPlugin,
564
- },
565
- settings: {
566
- react: {
567
- version: "detect",
568
- },
569
- },
570
- rules: {
571
- "react/boolean-prop-naming": [
572
- "error",
573
- { rule: "^(is|has)[A-Z]([A-Za-z0-9]?)+" },
574
- ],
575
- "react-hooks/exhaustive-deps": "warn",
576
- "react-hooks/rules-of-hooks": "error",
577
- "react/button-has-type": "error",
578
- "react/checked-requires-onchange-or-readonly": "error",
579
- "react/display-name": "error",
580
- "react/forbid-component-props": "error",
581
- "react/forward-ref-uses-ref": "error",
582
- "react/hook-use-state": "error",
583
- "react/iframe-missing-sandbox": "error",
584
- "react/jsx-boolean-value": "error",
585
- "react/jsx-fragments": "error",
586
- "react/jsx-handler-names": "error",
587
- "react/jsx-key": "error",
588
- "react/jsx-no-bind": "error",
589
- "react/jsx-no-constructed-context-values": "error",
590
- "react/jsx-no-leaked-render": "error",
591
- "react/jsx-no-script-url": "error",
592
- "react/jsx-no-target-blank": "error",
593
- "react/jsx-no-useless-fragment": "error",
594
- "react/jsx-pascal-case": "error",
595
- "react/jsx-props-no-spread-multi": "error",
596
- "react/jsx-sort-props": "error",
597
- "react/jsx-uses-react": "error",
598
- "react/jsx-uses-vars": "error",
599
- "react/no-access-state-in-setstate": "error",
600
- "react/no-array-index-key": "error",
601
- "react/no-arrow-function-lifecycle": "error",
602
- "react/no-children-prop": "error",
603
- "react/no-danger-with-children": "error",
604
- "react/no-did-mount-set-state": "error",
605
- "react/no-did-update-set-state": "error",
606
- "react/no-direct-mutation-state": "error",
607
- "react/no-find-dom-node": "error",
608
- "react/no-is-mounted": "error",
609
- "react/no-namespace": "error",
610
- "react/no-object-type-as-default-prop": "error",
611
- "react/no-redundant-should-component-update": "error",
612
- "react/no-render-return-value": "error",
613
- "react/no-string-refs": "error",
614
- "react/no-this-in-sfc": "error",
615
- "react/no-typos": "error",
616
- "react/no-unescaped-entities": "error",
617
- "react/no-unsafe": "error",
618
- "react/no-unstable-nested-components": "error",
619
- "react/no-unused-class-component-methods": "error",
620
- "react/no-unused-state": "error",
621
- "react/no-will-update-set-state": "error",
622
- "react/prefer-read-only-props": "error",
623
- "react/prefer-stateless-function": "error",
624
- "react/self-closing-comp": "error",
625
- "react/style-prop-object": "error",
626
- "react/void-dom-elements-no-children": "error",
627
- },
628
- },
629
- {
630
- files: [
631
- "**/test.{js,ts,jsx,tsx,cjs,cts,mjs,mts}",
632
- "**/*.test.{js,ts,jsx,tsx,cjs,cts,mjs,mts}",
633
- ],
634
- plugins: {
635
- "jest-formatting": jestFormattingPlugin,
636
- vitest: vitestPlugin,
637
- },
638
- rules: {
639
- "jest-formatting/padding-around-all": "error",
640
- "vitest/consistent-test-it": [
641
- "error",
642
- { fn: "test", withinDescribe: "test" },
643
- ],
644
- "vitest/expect-expect": "error",
645
- "vitest/max-nested-describe": ["error", { max: 1 }],
646
- "vitest/no-alias-methods": "error",
647
- "vitest/no-commented-out-tests": "error",
648
- "vitest/no-conditional-expect": "error",
649
- "vitest/no-conditional-in-test": "error",
650
- "vitest/no-conditional-tests": "error",
651
- "vitest/no-disabled-tests": "error",
652
- "vitest/no-done-callback": "error",
653
- "vitest/no-duplicate-hooks": "error",
654
- "vitest/no-focused-tests": "error",
655
- "vitest/no-identical-title": "error",
656
- "vitest/no-import-node-test": "error",
657
- "vitest/no-mocks-import": "error",
658
- "vitest/no-standalone-expect": "error",
659
- "vitest/no-test-return-statement": "error",
660
- "vitest/prefer-called-with": "error",
661
- "vitest/prefer-comparison-matcher": "error",
662
- "vitest/prefer-each": "error",
663
- "vitest/prefer-equality-matcher": "error",
664
- "vitest/prefer-hooks-in-order": "error",
665
- "vitest/prefer-hooks-on-top": "error",
666
- "vitest/prefer-lowercase-title": "error",
667
- "vitest/prefer-mock-promise-shorthand": "error",
668
- "vitest/prefer-strict-equal": "error",
669
- "vitest/prefer-to-be": "error",
670
- "vitest/prefer-to-be-object": "error",
671
- "vitest/prefer-to-contain": "error",
672
- "vitest/prefer-to-have-length": "error",
673
- "vitest/prefer-todo": "error",
674
- "vitest/require-hook": "error",
675
- "vitest/require-local-test-context-for-concurrent-snapshots":
676
- "error",
677
- "vitest/require-to-throw-message": "error",
678
- "vitest/require-top-level-describe": "error",
679
- "vitest/valid-describe-callback": "error",
680
- "vitest/valid-expect": "error",
681
- "vitest/valid-title": [
682
- "error",
683
- { mustMatch: { test: ["^should "] } },
684
- ],
685
- },
686
- },
687
- {
688
- files: ["**/*.{ts,tsx,cts,mts}"],
689
- languageOptions: {
690
- parser: tseslint.parser,
691
- parserOptions: {
692
- projectService: true,
693
- tsconfigRootDir: import.meta.dirname,
694
- },
695
- },
696
- plugins: {
697
- "@typescript-eslint": tseslint.plugin,
698
- },
699
- rules: {
553
+ //#region typescript-eslint
700
554
  "@typescript-eslint/adjacent-overload-signatures": "error",
701
555
  // https://www.totaltypescript.com/array-types-in-typescript
702
556
  "@typescript-eslint/array-type": [
@@ -824,42 +678,156 @@ export default tseslint.config(
824
678
  "@typescript-eslint/unbound-method": "error",
825
679
  "@typescript-eslint/no-dupe-class-members": "error",
826
680
  "@typescript-eslint/unified-signatures": "error",
827
- "class-methods-use-this": "off",
828
681
  "@typescript-eslint/no-empty-function": "error",
829
- "default-param-last": "off",
830
682
  "@typescript-eslint/no-empty-object-type": "error",
831
- "dot-notation": "off",
832
683
  "@typescript-eslint/no-implied-eval": "error",
833
- "no-array-constructor": "off",
834
684
  "@typescript-eslint/no-invalid-this": "error",
835
- "no-dupe-class-members": "off",
836
685
  "@typescript-eslint/no-deprecated": "error",
837
- "no-empty-function": "off",
838
686
  "@typescript-eslint/no-loop-func": "error",
839
687
  "@typescript-eslint/no-loss-of-precision": "error",
840
- "no-implied-eval": "off",
841
- "@typescript-eslint/no-redeclare": "error",
842
- "no-invalid-this": "off",
843
688
  "@typescript-eslint/no-shadow": "error",
844
- "no-loop-func": "off",
845
689
  "@typescript-eslint/return-await": "error",
846
690
  "@typescript-eslint/only-throw-error": "error",
847
- "no-loss-of-precision": "off",
848
691
  "@typescript-eslint/require-await": "error",
849
- "no-redeclare": "off",
850
692
  "@typescript-eslint/no-unused-expressions": "error",
851
- "no-return-await": "off",
852
- "no-shadow": "off",
853
693
  "@typescript-eslint/no-unused-vars": [
854
694
  "error",
855
695
  { ignoreRestSiblings: true },
856
696
  ],
857
697
  "@typescript-eslint/no-useless-constructor": "error",
858
- "no-throw-literal": "off",
859
- "no-unused-expressions": "off",
860
- "no-unused-vars": "off",
861
- "no-useless-constructor": "off",
862
- "require-await": "off",
698
+ //#endregion
699
+ },
700
+ },
701
+ {
702
+ files: ["**/*.{js,jsx,cjs,mjs}"],
703
+ ...tseslint.configs.disableTypeChecked,
704
+ },
705
+ {
706
+ files: ["**/*.{jsx,tsx}"],
707
+ plugins: {
708
+ react: reactPlugin,
709
+ "react-hooks": reactHooksPlugin,
710
+ },
711
+ settings: {
712
+ react: {
713
+ version: "detect",
714
+ },
715
+ },
716
+ rules: {
717
+ "react/boolean-prop-naming": [
718
+ "error",
719
+ { rule: "^(is|has)[A-Z]([A-Za-z0-9]?)+" },
720
+ ],
721
+ "react-hooks/exhaustive-deps": "warn",
722
+ "react-hooks/rules-of-hooks": "error",
723
+ "react/button-has-type": "error",
724
+ "react/checked-requires-onchange-or-readonly": "error",
725
+ "react/display-name": "error",
726
+ "react/forbid-component-props": "error",
727
+ "react/forward-ref-uses-ref": "error",
728
+ "react/hook-use-state": "error",
729
+ "react/iframe-missing-sandbox": "error",
730
+ "react/jsx-boolean-value": "error",
731
+ "react/jsx-fragments": "error",
732
+ "react/jsx-handler-names": "error",
733
+ "react/jsx-key": "error",
734
+ "react/jsx-no-bind": "error",
735
+ "react/jsx-no-constructed-context-values": "error",
736
+ "react/jsx-no-leaked-render": "error",
737
+ "react/jsx-no-script-url": "error",
738
+ "react/jsx-no-target-blank": "error",
739
+ "react/jsx-no-useless-fragment": "error",
740
+ "react/jsx-pascal-case": "error",
741
+ "react/jsx-props-no-spread-multi": "error",
742
+ "react/jsx-sort-props": "error",
743
+ "react/jsx-uses-react": "error",
744
+ "react/jsx-uses-vars": "error",
745
+ "react/no-access-state-in-setstate": "error",
746
+ "react/no-array-index-key": "error",
747
+ "react/no-arrow-function-lifecycle": "error",
748
+ "react/no-children-prop": "error",
749
+ "react/no-danger-with-children": "error",
750
+ "react/no-did-mount-set-state": "error",
751
+ "react/no-did-update-set-state": "error",
752
+ "react/no-direct-mutation-state": "error",
753
+ "react/no-find-dom-node": "error",
754
+ "react/no-is-mounted": "error",
755
+ "react/no-namespace": "error",
756
+ "react/no-object-type-as-default-prop": "error",
757
+ "react/no-redundant-should-component-update": "error",
758
+ "react/no-render-return-value": "error",
759
+ "react/no-string-refs": "error",
760
+ "react/no-this-in-sfc": "error",
761
+ "react/no-typos": "error",
762
+ "react/no-unescaped-entities": "error",
763
+ "react/no-unsafe": "error",
764
+ "react/no-unstable-nested-components": "error",
765
+ "react/no-unused-class-component-methods": "error",
766
+ "react/no-unused-state": "error",
767
+ "react/no-will-update-set-state": "error",
768
+ "react/prefer-read-only-props": "error",
769
+ "react/prefer-stateless-function": "error",
770
+ "react/self-closing-comp": "error",
771
+ "react/style-prop-object": "error",
772
+ "react/void-dom-elements-no-children": "error",
773
+ },
774
+ },
775
+ {
776
+ files: [
777
+ "**/test.{js,ts,jsx,tsx,cjs,cts,mjs,mts}",
778
+ "**/*.test.{js,ts,jsx,tsx,cjs,cts,mjs,mts}",
779
+ ],
780
+ plugins: {
781
+ "jest-formatting": jestFormattingPlugin,
782
+ vitest: vitestPlugin,
783
+ },
784
+ rules: {
785
+ "jest-formatting/padding-around-all": "error",
786
+ "vitest/consistent-test-it": [
787
+ "error",
788
+ { fn: "test", withinDescribe: "test" },
789
+ ],
790
+ "vitest/expect-expect": "error",
791
+ "vitest/max-nested-describe": ["error", { max: 1 }],
792
+ "vitest/no-alias-methods": "error",
793
+ "vitest/no-commented-out-tests": "error",
794
+ "vitest/no-conditional-expect": "error",
795
+ "vitest/no-conditional-in-test": "error",
796
+ "vitest/no-conditional-tests": "error",
797
+ "vitest/no-disabled-tests": "error",
798
+ "vitest/no-done-callback": "error",
799
+ "vitest/no-duplicate-hooks": "error",
800
+ "vitest/no-focused-tests": "error",
801
+ "vitest/no-identical-title": "error",
802
+ "vitest/no-import-node-test": "error",
803
+ "vitest/no-mocks-import": "error",
804
+ "vitest/no-standalone-expect": "error",
805
+ "vitest/no-test-return-statement": "error",
806
+ "vitest/prefer-called-with": "error",
807
+ "vitest/prefer-comparison-matcher": "error",
808
+ "vitest/prefer-each": "error",
809
+ "vitest/prefer-equality-matcher": "error",
810
+ "vitest/prefer-hooks-in-order": "error",
811
+ "vitest/prefer-hooks-on-top": "error",
812
+ "vitest/prefer-lowercase-title": "error",
813
+ "vitest/prefer-mock-promise-shorthand": "error",
814
+ "vitest/prefer-strict-equal": "error",
815
+ "vitest/prefer-to-be": "error",
816
+ "vitest/prefer-to-be-object": "error",
817
+ "vitest/prefer-to-contain": "error",
818
+ "vitest/prefer-to-have-length": "error",
819
+ "vitest/prefer-todo": "error",
820
+ "vitest/require-hook": "error",
821
+ "vitest/require-local-test-context-for-concurrent-snapshots":
822
+ "error",
823
+ "vitest/require-to-throw-message": "error",
824
+ "vitest/require-top-level-describe": "error",
825
+ "vitest/valid-describe-callback": "error",
826
+ "vitest/valid-expect": "error",
827
+ "vitest/valid-title": [
828
+ "error",
829
+ { mustMatch: { test: ["^should "] } },
830
+ ],
863
831
  },
864
832
  },
865
833
  ...new FlatCompat().extends("plugin:mdx/recommended").map((config) => ({
@@ -886,6 +854,7 @@ export default tseslint.config(
886
854
  ],
887
855
  rules: {
888
856
  "import/no-default-export": "off",
857
+ "sonarjs/sonar-no-magic-numbers": "off",
889
858
  },
890
859
  },
891
860
  eslintPluginPrettierRecommended,
package/dist/index.mjs CHANGED
@@ -327,7 +327,7 @@ const PRESERVE_FILES = [
327
327
  ];
328
328
 
329
329
  var name = "@adbayb/stack";
330
- var version = "0.0.0-next-5671759";
330
+ var version = "0.0.0-next-9c647dc";
331
331
  var description = "My opinionated JavaScript-based toolchain";
332
332
  var publishConfig = {
333
333
  access: "public"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "0.0.0-next-5671759",
3
+ "version": "0.0.0-next-9c647dc",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"