@luxfi/biome-config 1.0.4 → 1.0.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/LICENSE +122 -0
- package/compiled/base.json +290 -290
- package/package.json +3 -5
package/compiled/base.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"**/*.jsonc",
|
|
17
17
|
"!.vscode/settings.json",
|
|
18
18
|
"!.vscode/extensions.json",
|
|
19
|
-
"!tools/
|
|
19
|
+
"!tools/lx-nx/src/generators"
|
|
20
20
|
],
|
|
21
21
|
"experimentalScannerIgnores": [
|
|
22
22
|
"*.tsbuildinfo",
|
|
@@ -187,13 +187,13 @@
|
|
|
187
187
|
"options": {
|
|
188
188
|
"paths": {
|
|
189
189
|
"utilities/src/telemetry/analytics/analytics": {
|
|
190
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
190
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
191
191
|
},
|
|
192
192
|
"utilities/src/telemetry/trace/Trace": {
|
|
193
|
-
"message": "Please use the Trace in '
|
|
193
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
194
194
|
},
|
|
195
195
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
196
|
-
"message": "Please import Modal from `
|
|
196
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
197
197
|
},
|
|
198
198
|
"react-native": {
|
|
199
199
|
"importNames": [
|
|
@@ -232,19 +232,19 @@
|
|
|
232
232
|
"utilities/src/format/localeBased": {
|
|
233
233
|
"message": "Use via `useLocalizationContext` instead."
|
|
234
234
|
},
|
|
235
|
-
"
|
|
235
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
236
236
|
"importNames": [
|
|
237
237
|
"useFiatConverter"
|
|
238
238
|
],
|
|
239
239
|
"message": "Use via `useLocalizationContext` instead."
|
|
240
240
|
},
|
|
241
|
-
"
|
|
241
|
+
"lx/src/features/language/formatter": {
|
|
242
242
|
"importNames": [
|
|
243
243
|
"useLocalizedFormatter"
|
|
244
244
|
],
|
|
245
245
|
"message": "Use via `useLocalizationContext` instead."
|
|
246
246
|
},
|
|
247
|
-
"
|
|
247
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
248
248
|
"importNames": [
|
|
249
249
|
"usePortfolioValueModifiers"
|
|
250
250
|
],
|
|
@@ -254,16 +254,16 @@
|
|
|
254
254
|
"importNames": [
|
|
255
255
|
"BottomSheetTextInput"
|
|
256
256
|
],
|
|
257
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
257
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
258
258
|
},
|
|
259
259
|
"expo-haptics": {
|
|
260
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
260
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
261
261
|
},
|
|
262
262
|
"@luxamm/analytics": {
|
|
263
263
|
"importNames": [
|
|
264
264
|
"sendAnalyticsEvent"
|
|
265
265
|
],
|
|
266
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
266
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
267
267
|
},
|
|
268
268
|
"@tamagui/core": {
|
|
269
269
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -278,10 +278,10 @@
|
|
|
278
278
|
},
|
|
279
279
|
{
|
|
280
280
|
"group": [
|
|
281
|
-
"@
|
|
282
|
-
"@
|
|
281
|
+
"@l.x/*/src",
|
|
282
|
+
"@l.x/*/src/*"
|
|
283
283
|
],
|
|
284
|
-
"message": "Deep imports from @
|
|
284
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
285
285
|
}
|
|
286
286
|
]
|
|
287
287
|
}
|
|
@@ -463,13 +463,13 @@
|
|
|
463
463
|
"options": {
|
|
464
464
|
"paths": {
|
|
465
465
|
"utilities/src/telemetry/analytics/analytics": {
|
|
466
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
466
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
467
467
|
},
|
|
468
468
|
"utilities/src/telemetry/trace/Trace": {
|
|
469
|
-
"message": "Please use the Trace in '
|
|
469
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
470
470
|
},
|
|
471
471
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
472
|
-
"message": "Please import Modal from `
|
|
472
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
473
473
|
},
|
|
474
474
|
"react-native": {
|
|
475
475
|
"importNames": [
|
|
@@ -508,19 +508,19 @@
|
|
|
508
508
|
"utilities/src/format/localeBased": {
|
|
509
509
|
"message": "Use via `useLocalizationContext` instead."
|
|
510
510
|
},
|
|
511
|
-
"
|
|
511
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
512
512
|
"importNames": [
|
|
513
513
|
"useFiatConverter"
|
|
514
514
|
],
|
|
515
515
|
"message": "Use via `useLocalizationContext` instead."
|
|
516
516
|
},
|
|
517
|
-
"
|
|
517
|
+
"lx/src/features/language/formatter": {
|
|
518
518
|
"importNames": [
|
|
519
519
|
"useLocalizedFormatter"
|
|
520
520
|
],
|
|
521
521
|
"message": "Use via `useLocalizationContext` instead."
|
|
522
522
|
},
|
|
523
|
-
"
|
|
523
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
524
524
|
"importNames": [
|
|
525
525
|
"usePortfolioValueModifiers"
|
|
526
526
|
],
|
|
@@ -530,16 +530,16 @@
|
|
|
530
530
|
"importNames": [
|
|
531
531
|
"BottomSheetTextInput"
|
|
532
532
|
],
|
|
533
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
533
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
534
534
|
},
|
|
535
535
|
"expo-haptics": {
|
|
536
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
536
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
537
537
|
},
|
|
538
538
|
"@luxamm/analytics": {
|
|
539
539
|
"importNames": [
|
|
540
540
|
"sendAnalyticsEvent"
|
|
541
541
|
],
|
|
542
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
542
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
543
543
|
},
|
|
544
544
|
"@tamagui/core": {
|
|
545
545
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -554,10 +554,10 @@
|
|
|
554
554
|
},
|
|
555
555
|
{
|
|
556
556
|
"group": [
|
|
557
|
-
"@
|
|
558
|
-
"@
|
|
557
|
+
"@l.x/*/src",
|
|
558
|
+
"@l.x/*/src/*"
|
|
559
559
|
],
|
|
560
|
-
"message": "Deep imports from @
|
|
560
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
561
561
|
}
|
|
562
562
|
]
|
|
563
563
|
}
|
|
@@ -581,13 +581,13 @@
|
|
|
581
581
|
"options": {
|
|
582
582
|
"paths": {
|
|
583
583
|
"utilities/src/telemetry/analytics/analytics": {
|
|
584
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
584
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
585
585
|
},
|
|
586
586
|
"utilities/src/telemetry/trace/Trace": {
|
|
587
|
-
"message": "Please use the Trace in '
|
|
587
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
588
588
|
},
|
|
589
589
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
590
|
-
"message": "Please import Modal from `
|
|
590
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
591
591
|
},
|
|
592
592
|
"react-native": {
|
|
593
593
|
"importNames": [
|
|
@@ -626,19 +626,19 @@
|
|
|
626
626
|
"utilities/src/format/localeBased": {
|
|
627
627
|
"message": "Use via `useLocalizationContext` instead."
|
|
628
628
|
},
|
|
629
|
-
"
|
|
629
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
630
630
|
"importNames": [
|
|
631
631
|
"useFiatConverter"
|
|
632
632
|
],
|
|
633
633
|
"message": "Use via `useLocalizationContext` instead."
|
|
634
634
|
},
|
|
635
|
-
"
|
|
635
|
+
"lx/src/features/language/formatter": {
|
|
636
636
|
"importNames": [
|
|
637
637
|
"useLocalizedFormatter"
|
|
638
638
|
],
|
|
639
639
|
"message": "Use via `useLocalizationContext` instead."
|
|
640
640
|
},
|
|
641
|
-
"
|
|
641
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
642
642
|
"importNames": [
|
|
643
643
|
"usePortfolioValueModifiers"
|
|
644
644
|
],
|
|
@@ -648,16 +648,16 @@
|
|
|
648
648
|
"importNames": [
|
|
649
649
|
"BottomSheetTextInput"
|
|
650
650
|
],
|
|
651
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
651
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
652
652
|
},
|
|
653
653
|
"expo-haptics": {
|
|
654
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
654
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
655
655
|
},
|
|
656
656
|
"@luxamm/analytics": {
|
|
657
657
|
"importNames": [
|
|
658
658
|
"sendAnalyticsEvent"
|
|
659
659
|
],
|
|
660
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
660
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
661
661
|
},
|
|
662
662
|
"@tamagui/core": {
|
|
663
663
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -672,10 +672,10 @@
|
|
|
672
672
|
},
|
|
673
673
|
{
|
|
674
674
|
"group": [
|
|
675
|
-
"@
|
|
676
|
-
"@
|
|
675
|
+
"@l.x/*/src",
|
|
676
|
+
"@l.x/*/src/*"
|
|
677
677
|
],
|
|
678
|
-
"message": "Deep imports from @
|
|
678
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
679
679
|
}
|
|
680
680
|
]
|
|
681
681
|
}
|
|
@@ -699,13 +699,13 @@
|
|
|
699
699
|
"options": {
|
|
700
700
|
"paths": {
|
|
701
701
|
"utilities/src/telemetry/analytics/analytics": {
|
|
702
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
702
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
703
703
|
},
|
|
704
704
|
"utilities/src/telemetry/trace/Trace": {
|
|
705
|
-
"message": "Please use the Trace in '
|
|
705
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
706
706
|
},
|
|
707
707
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
708
|
-
"message": "Please import Modal from `
|
|
708
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
709
709
|
},
|
|
710
710
|
"react-native": {
|
|
711
711
|
"importNames": [
|
|
@@ -744,19 +744,19 @@
|
|
|
744
744
|
"utilities/src/format/localeBased": {
|
|
745
745
|
"message": "Use via `useLocalizationContext` instead."
|
|
746
746
|
},
|
|
747
|
-
"
|
|
747
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
748
748
|
"importNames": [
|
|
749
749
|
"useFiatConverter"
|
|
750
750
|
],
|
|
751
751
|
"message": "Use via `useLocalizationContext` instead."
|
|
752
752
|
},
|
|
753
|
-
"
|
|
753
|
+
"lx/src/features/language/formatter": {
|
|
754
754
|
"importNames": [
|
|
755
755
|
"useLocalizedFormatter"
|
|
756
756
|
],
|
|
757
757
|
"message": "Use via `useLocalizationContext` instead."
|
|
758
758
|
},
|
|
759
|
-
"
|
|
759
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
760
760
|
"importNames": [
|
|
761
761
|
"usePortfolioValueModifiers"
|
|
762
762
|
],
|
|
@@ -766,16 +766,16 @@
|
|
|
766
766
|
"importNames": [
|
|
767
767
|
"BottomSheetTextInput"
|
|
768
768
|
],
|
|
769
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
769
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
770
770
|
},
|
|
771
771
|
"expo-haptics": {
|
|
772
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
772
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
773
773
|
},
|
|
774
774
|
"@luxamm/analytics": {
|
|
775
775
|
"importNames": [
|
|
776
776
|
"sendAnalyticsEvent"
|
|
777
777
|
],
|
|
778
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
778
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
779
779
|
},
|
|
780
780
|
"@tamagui/core": {
|
|
781
781
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -790,10 +790,10 @@
|
|
|
790
790
|
},
|
|
791
791
|
{
|
|
792
792
|
"group": [
|
|
793
|
-
"@
|
|
794
|
-
"@
|
|
793
|
+
"@l.x/*/src",
|
|
794
|
+
"@l.x/*/src/*"
|
|
795
795
|
],
|
|
796
|
-
"message": "Deep imports from @
|
|
796
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
797
797
|
}
|
|
798
798
|
]
|
|
799
799
|
}
|
|
@@ -817,13 +817,13 @@
|
|
|
817
817
|
"options": {
|
|
818
818
|
"paths": {
|
|
819
819
|
"utilities/src/telemetry/analytics/analytics": {
|
|
820
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
820
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
821
821
|
},
|
|
822
822
|
"utilities/src/telemetry/trace/Trace": {
|
|
823
|
-
"message": "Please use the Trace in '
|
|
823
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
824
824
|
},
|
|
825
825
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
826
|
-
"message": "Please import Modal from `
|
|
826
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
827
827
|
},
|
|
828
828
|
"react-native": {
|
|
829
829
|
"importNames": [
|
|
@@ -862,19 +862,19 @@
|
|
|
862
862
|
"utilities/src/format/localeBased": {
|
|
863
863
|
"message": "Use via `useLocalizationContext` instead."
|
|
864
864
|
},
|
|
865
|
-
"
|
|
865
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
866
866
|
"importNames": [
|
|
867
867
|
"useFiatConverter"
|
|
868
868
|
],
|
|
869
869
|
"message": "Use via `useLocalizationContext` instead."
|
|
870
870
|
},
|
|
871
|
-
"
|
|
871
|
+
"lx/src/features/language/formatter": {
|
|
872
872
|
"importNames": [
|
|
873
873
|
"useLocalizedFormatter"
|
|
874
874
|
],
|
|
875
875
|
"message": "Use via `useLocalizationContext` instead."
|
|
876
876
|
},
|
|
877
|
-
"
|
|
877
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
878
878
|
"importNames": [
|
|
879
879
|
"usePortfolioValueModifiers"
|
|
880
880
|
],
|
|
@@ -884,16 +884,16 @@
|
|
|
884
884
|
"importNames": [
|
|
885
885
|
"BottomSheetTextInput"
|
|
886
886
|
],
|
|
887
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
887
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
888
888
|
},
|
|
889
889
|
"expo-haptics": {
|
|
890
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
890
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
891
891
|
},
|
|
892
892
|
"@luxamm/analytics": {
|
|
893
893
|
"importNames": [
|
|
894
894
|
"sendAnalyticsEvent"
|
|
895
895
|
],
|
|
896
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
896
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
897
897
|
},
|
|
898
898
|
"@tamagui/core": {
|
|
899
899
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -908,10 +908,10 @@
|
|
|
908
908
|
},
|
|
909
909
|
{
|
|
910
910
|
"group": [
|
|
911
|
-
"@
|
|
912
|
-
"@
|
|
911
|
+
"@l.x/*/src",
|
|
912
|
+
"@l.x/*/src/*"
|
|
913
913
|
],
|
|
914
|
-
"message": "Deep imports from @
|
|
914
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
915
915
|
}
|
|
916
916
|
]
|
|
917
917
|
}
|
|
@@ -935,13 +935,13 @@
|
|
|
935
935
|
"options": {
|
|
936
936
|
"paths": {
|
|
937
937
|
"utilities/src/telemetry/analytics/analytics": {
|
|
938
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
938
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
939
939
|
},
|
|
940
940
|
"utilities/src/telemetry/trace/Trace": {
|
|
941
|
-
"message": "Please use the Trace in '
|
|
941
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
942
942
|
},
|
|
943
943
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
944
|
-
"message": "Please import Modal from `
|
|
944
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
945
945
|
},
|
|
946
946
|
"react-native": {
|
|
947
947
|
"importNames": [
|
|
@@ -980,19 +980,19 @@
|
|
|
980
980
|
"utilities/src/format/localeBased": {
|
|
981
981
|
"message": "Use via `useLocalizationContext` instead."
|
|
982
982
|
},
|
|
983
|
-
"
|
|
983
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
984
984
|
"importNames": [
|
|
985
985
|
"useFiatConverter"
|
|
986
986
|
],
|
|
987
987
|
"message": "Use via `useLocalizationContext` instead."
|
|
988
988
|
},
|
|
989
|
-
"
|
|
989
|
+
"lx/src/features/language/formatter": {
|
|
990
990
|
"importNames": [
|
|
991
991
|
"useLocalizedFormatter"
|
|
992
992
|
],
|
|
993
993
|
"message": "Use via `useLocalizationContext` instead."
|
|
994
994
|
},
|
|
995
|
-
"
|
|
995
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
996
996
|
"importNames": [
|
|
997
997
|
"usePortfolioValueModifiers"
|
|
998
998
|
],
|
|
@@ -1002,16 +1002,16 @@
|
|
|
1002
1002
|
"importNames": [
|
|
1003
1003
|
"BottomSheetTextInput"
|
|
1004
1004
|
],
|
|
1005
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
1005
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
1006
1006
|
},
|
|
1007
1007
|
"expo-haptics": {
|
|
1008
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
1008
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
1009
1009
|
},
|
|
1010
1010
|
"@luxamm/analytics": {
|
|
1011
1011
|
"importNames": [
|
|
1012
1012
|
"sendAnalyticsEvent"
|
|
1013
1013
|
],
|
|
1014
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
1014
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
1015
1015
|
},
|
|
1016
1016
|
"@tamagui/core": {
|
|
1017
1017
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -1026,10 +1026,10 @@
|
|
|
1026
1026
|
},
|
|
1027
1027
|
{
|
|
1028
1028
|
"group": [
|
|
1029
|
-
"@
|
|
1030
|
-
"@
|
|
1029
|
+
"@l.x/*/src",
|
|
1030
|
+
"@l.x/*/src/*"
|
|
1031
1031
|
],
|
|
1032
|
-
"message": "Deep imports from @
|
|
1032
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
1033
1033
|
}
|
|
1034
1034
|
]
|
|
1035
1035
|
}
|
|
@@ -1053,13 +1053,13 @@
|
|
|
1053
1053
|
"options": {
|
|
1054
1054
|
"paths": {
|
|
1055
1055
|
"utilities/src/telemetry/analytics/analytics": {
|
|
1056
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
1056
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
1057
1057
|
},
|
|
1058
1058
|
"utilities/src/telemetry/trace/Trace": {
|
|
1059
|
-
"message": "Please use the Trace in '
|
|
1059
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
1060
1060
|
},
|
|
1061
1061
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
1062
|
-
"message": "Please import Modal from `
|
|
1062
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
1063
1063
|
},
|
|
1064
1064
|
"react-native": {
|
|
1065
1065
|
"importNames": [
|
|
@@ -1098,19 +1098,19 @@
|
|
|
1098
1098
|
"utilities/src/format/localeBased": {
|
|
1099
1099
|
"message": "Use via `useLocalizationContext` instead."
|
|
1100
1100
|
},
|
|
1101
|
-
"
|
|
1101
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
1102
1102
|
"importNames": [
|
|
1103
1103
|
"useFiatConverter"
|
|
1104
1104
|
],
|
|
1105
1105
|
"message": "Use via `useLocalizationContext` instead."
|
|
1106
1106
|
},
|
|
1107
|
-
"
|
|
1107
|
+
"lx/src/features/language/formatter": {
|
|
1108
1108
|
"importNames": [
|
|
1109
1109
|
"useLocalizedFormatter"
|
|
1110
1110
|
],
|
|
1111
1111
|
"message": "Use via `useLocalizationContext` instead."
|
|
1112
1112
|
},
|
|
1113
|
-
"
|
|
1113
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
1114
1114
|
"importNames": [
|
|
1115
1115
|
"usePortfolioValueModifiers"
|
|
1116
1116
|
],
|
|
@@ -1120,16 +1120,16 @@
|
|
|
1120
1120
|
"importNames": [
|
|
1121
1121
|
"BottomSheetTextInput"
|
|
1122
1122
|
],
|
|
1123
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
1123
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
1124
1124
|
},
|
|
1125
1125
|
"expo-haptics": {
|
|
1126
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
1126
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
1127
1127
|
},
|
|
1128
1128
|
"@luxamm/analytics": {
|
|
1129
1129
|
"importNames": [
|
|
1130
1130
|
"sendAnalyticsEvent"
|
|
1131
1131
|
],
|
|
1132
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
1132
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
1133
1133
|
},
|
|
1134
1134
|
"@tamagui/core": {
|
|
1135
1135
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -1144,10 +1144,10 @@
|
|
|
1144
1144
|
},
|
|
1145
1145
|
{
|
|
1146
1146
|
"group": [
|
|
1147
|
-
"@
|
|
1148
|
-
"@
|
|
1147
|
+
"@l.x/*/src",
|
|
1148
|
+
"@l.x/*/src/*"
|
|
1149
1149
|
],
|
|
1150
|
-
"message": "Deep imports from @
|
|
1150
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
1151
1151
|
}
|
|
1152
1152
|
]
|
|
1153
1153
|
}
|
|
@@ -1171,13 +1171,13 @@
|
|
|
1171
1171
|
"options": {
|
|
1172
1172
|
"paths": {
|
|
1173
1173
|
"utilities/src/telemetry/analytics/analytics": {
|
|
1174
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
1174
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
1175
1175
|
},
|
|
1176
1176
|
"utilities/src/telemetry/trace/Trace": {
|
|
1177
|
-
"message": "Please use the Trace in '
|
|
1177
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
1178
1178
|
},
|
|
1179
1179
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
1180
|
-
"message": "Please import Modal from `
|
|
1180
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
1181
1181
|
},
|
|
1182
1182
|
"react-native": {
|
|
1183
1183
|
"importNames": [
|
|
@@ -1216,19 +1216,19 @@
|
|
|
1216
1216
|
"utilities/src/format/localeBased": {
|
|
1217
1217
|
"message": "Use via `useLocalizationContext` instead."
|
|
1218
1218
|
},
|
|
1219
|
-
"
|
|
1219
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
1220
1220
|
"importNames": [
|
|
1221
1221
|
"useFiatConverter"
|
|
1222
1222
|
],
|
|
1223
1223
|
"message": "Use via `useLocalizationContext` instead."
|
|
1224
1224
|
},
|
|
1225
|
-
"
|
|
1225
|
+
"lx/src/features/language/formatter": {
|
|
1226
1226
|
"importNames": [
|
|
1227
1227
|
"useLocalizedFormatter"
|
|
1228
1228
|
],
|
|
1229
1229
|
"message": "Use via `useLocalizationContext` instead."
|
|
1230
1230
|
},
|
|
1231
|
-
"
|
|
1231
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
1232
1232
|
"importNames": [
|
|
1233
1233
|
"usePortfolioValueModifiers"
|
|
1234
1234
|
],
|
|
@@ -1238,16 +1238,16 @@
|
|
|
1238
1238
|
"importNames": [
|
|
1239
1239
|
"BottomSheetTextInput"
|
|
1240
1240
|
],
|
|
1241
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
1241
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
1242
1242
|
},
|
|
1243
1243
|
"expo-haptics": {
|
|
1244
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
1244
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
1245
1245
|
},
|
|
1246
1246
|
"@luxamm/analytics": {
|
|
1247
1247
|
"importNames": [
|
|
1248
1248
|
"sendAnalyticsEvent"
|
|
1249
1249
|
],
|
|
1250
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
1250
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
1251
1251
|
},
|
|
1252
1252
|
"@tamagui/core": {
|
|
1253
1253
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -1262,10 +1262,10 @@
|
|
|
1262
1262
|
},
|
|
1263
1263
|
{
|
|
1264
1264
|
"group": [
|
|
1265
|
-
"@
|
|
1266
|
-
"@
|
|
1265
|
+
"@l.x/*/src",
|
|
1266
|
+
"@l.x/*/src/*"
|
|
1267
1267
|
],
|
|
1268
|
-
"message": "Deep imports from @
|
|
1268
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
1269
1269
|
}
|
|
1270
1270
|
]
|
|
1271
1271
|
}
|
|
@@ -1289,13 +1289,13 @@
|
|
|
1289
1289
|
"options": {
|
|
1290
1290
|
"paths": {
|
|
1291
1291
|
"utilities/src/telemetry/analytics/analytics": {
|
|
1292
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
1292
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
1293
1293
|
},
|
|
1294
1294
|
"utilities/src/telemetry/trace/Trace": {
|
|
1295
|
-
"message": "Please use the Trace in '
|
|
1295
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
1296
1296
|
},
|
|
1297
1297
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
1298
|
-
"message": "Please import Modal from `
|
|
1298
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
1299
1299
|
},
|
|
1300
1300
|
"react-native": {
|
|
1301
1301
|
"importNames": [
|
|
@@ -1334,19 +1334,19 @@
|
|
|
1334
1334
|
"utilities/src/format/localeBased": {
|
|
1335
1335
|
"message": "Use via `useLocalizationContext` instead."
|
|
1336
1336
|
},
|
|
1337
|
-
"
|
|
1337
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
1338
1338
|
"importNames": [
|
|
1339
1339
|
"useFiatConverter"
|
|
1340
1340
|
],
|
|
1341
1341
|
"message": "Use via `useLocalizationContext` instead."
|
|
1342
1342
|
},
|
|
1343
|
-
"
|
|
1343
|
+
"lx/src/features/language/formatter": {
|
|
1344
1344
|
"importNames": [
|
|
1345
1345
|
"useLocalizedFormatter"
|
|
1346
1346
|
],
|
|
1347
1347
|
"message": "Use via `useLocalizationContext` instead."
|
|
1348
1348
|
},
|
|
1349
|
-
"
|
|
1349
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
1350
1350
|
"importNames": [
|
|
1351
1351
|
"usePortfolioValueModifiers"
|
|
1352
1352
|
],
|
|
@@ -1356,16 +1356,16 @@
|
|
|
1356
1356
|
"importNames": [
|
|
1357
1357
|
"BottomSheetTextInput"
|
|
1358
1358
|
],
|
|
1359
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
1359
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
1360
1360
|
},
|
|
1361
1361
|
"expo-haptics": {
|
|
1362
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
1362
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
1363
1363
|
},
|
|
1364
1364
|
"@luxamm/analytics": {
|
|
1365
1365
|
"importNames": [
|
|
1366
1366
|
"sendAnalyticsEvent"
|
|
1367
1367
|
],
|
|
1368
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
1368
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
1369
1369
|
},
|
|
1370
1370
|
"@tamagui/core": {
|
|
1371
1371
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -1380,10 +1380,10 @@
|
|
|
1380
1380
|
},
|
|
1381
1381
|
{
|
|
1382
1382
|
"group": [
|
|
1383
|
-
"@
|
|
1384
|
-
"@
|
|
1383
|
+
"@l.x/*/src",
|
|
1384
|
+
"@l.x/*/src/*"
|
|
1385
1385
|
],
|
|
1386
|
-
"message": "Deep imports from @
|
|
1386
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
1387
1387
|
}
|
|
1388
1388
|
]
|
|
1389
1389
|
}
|
|
@@ -1407,13 +1407,13 @@
|
|
|
1407
1407
|
"options": {
|
|
1408
1408
|
"paths": {
|
|
1409
1409
|
"utilities/src/telemetry/analytics/analytics": {
|
|
1410
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
1410
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
1411
1411
|
},
|
|
1412
1412
|
"utilities/src/telemetry/trace/Trace": {
|
|
1413
|
-
"message": "Please use the Trace in '
|
|
1413
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
1414
1414
|
},
|
|
1415
1415
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
1416
|
-
"message": "Please import Modal from `
|
|
1416
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
1417
1417
|
},
|
|
1418
1418
|
"react-native": {
|
|
1419
1419
|
"importNames": [
|
|
@@ -1452,19 +1452,19 @@
|
|
|
1452
1452
|
"utilities/src/format/localeBased": {
|
|
1453
1453
|
"message": "Use via `useLocalizationContext` instead."
|
|
1454
1454
|
},
|
|
1455
|
-
"
|
|
1455
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
1456
1456
|
"importNames": [
|
|
1457
1457
|
"useFiatConverter"
|
|
1458
1458
|
],
|
|
1459
1459
|
"message": "Use via `useLocalizationContext` instead."
|
|
1460
1460
|
},
|
|
1461
|
-
"
|
|
1461
|
+
"lx/src/features/language/formatter": {
|
|
1462
1462
|
"importNames": [
|
|
1463
1463
|
"useLocalizedFormatter"
|
|
1464
1464
|
],
|
|
1465
1465
|
"message": "Use via `useLocalizationContext` instead."
|
|
1466
1466
|
},
|
|
1467
|
-
"
|
|
1467
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
1468
1468
|
"importNames": [
|
|
1469
1469
|
"usePortfolioValueModifiers"
|
|
1470
1470
|
],
|
|
@@ -1474,16 +1474,16 @@
|
|
|
1474
1474
|
"importNames": [
|
|
1475
1475
|
"BottomSheetTextInput"
|
|
1476
1476
|
],
|
|
1477
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
1477
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
1478
1478
|
},
|
|
1479
1479
|
"expo-haptics": {
|
|
1480
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
1480
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
1481
1481
|
},
|
|
1482
1482
|
"@luxamm/analytics": {
|
|
1483
1483
|
"importNames": [
|
|
1484
1484
|
"sendAnalyticsEvent"
|
|
1485
1485
|
],
|
|
1486
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
1486
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
1487
1487
|
},
|
|
1488
1488
|
"@tamagui/core": {
|
|
1489
1489
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -1498,10 +1498,10 @@
|
|
|
1498
1498
|
},
|
|
1499
1499
|
{
|
|
1500
1500
|
"group": [
|
|
1501
|
-
"@
|
|
1502
|
-
"@
|
|
1501
|
+
"@l.x/*/src",
|
|
1502
|
+
"@l.x/*/src/*"
|
|
1503
1503
|
],
|
|
1504
|
-
"message": "Deep imports from @
|
|
1504
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
1505
1505
|
}
|
|
1506
1506
|
]
|
|
1507
1507
|
}
|
|
@@ -1525,13 +1525,13 @@
|
|
|
1525
1525
|
"options": {
|
|
1526
1526
|
"paths": {
|
|
1527
1527
|
"utilities/src/telemetry/analytics/analytics": {
|
|
1528
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
1528
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
1529
1529
|
},
|
|
1530
1530
|
"utilities/src/telemetry/trace/Trace": {
|
|
1531
|
-
"message": "Please use the Trace in '
|
|
1531
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
1532
1532
|
},
|
|
1533
1533
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
1534
|
-
"message": "Please import Modal from `
|
|
1534
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
1535
1535
|
},
|
|
1536
1536
|
"react-native": {
|
|
1537
1537
|
"importNames": [
|
|
@@ -1570,19 +1570,19 @@
|
|
|
1570
1570
|
"utilities/src/format/localeBased": {
|
|
1571
1571
|
"message": "Use via `useLocalizationContext` instead."
|
|
1572
1572
|
},
|
|
1573
|
-
"
|
|
1573
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
1574
1574
|
"importNames": [
|
|
1575
1575
|
"useFiatConverter"
|
|
1576
1576
|
],
|
|
1577
1577
|
"message": "Use via `useLocalizationContext` instead."
|
|
1578
1578
|
},
|
|
1579
|
-
"
|
|
1579
|
+
"lx/src/features/language/formatter": {
|
|
1580
1580
|
"importNames": [
|
|
1581
1581
|
"useLocalizedFormatter"
|
|
1582
1582
|
],
|
|
1583
1583
|
"message": "Use via `useLocalizationContext` instead."
|
|
1584
1584
|
},
|
|
1585
|
-
"
|
|
1585
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
1586
1586
|
"importNames": [
|
|
1587
1587
|
"usePortfolioValueModifiers"
|
|
1588
1588
|
],
|
|
@@ -1592,16 +1592,16 @@
|
|
|
1592
1592
|
"importNames": [
|
|
1593
1593
|
"BottomSheetTextInput"
|
|
1594
1594
|
],
|
|
1595
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
1595
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
1596
1596
|
},
|
|
1597
1597
|
"expo-haptics": {
|
|
1598
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
1598
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
1599
1599
|
},
|
|
1600
1600
|
"@luxamm/analytics": {
|
|
1601
1601
|
"importNames": [
|
|
1602
1602
|
"sendAnalyticsEvent"
|
|
1603
1603
|
],
|
|
1604
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
1604
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
1605
1605
|
},
|
|
1606
1606
|
"@tamagui/core": {
|
|
1607
1607
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -1616,10 +1616,10 @@
|
|
|
1616
1616
|
},
|
|
1617
1617
|
{
|
|
1618
1618
|
"group": [
|
|
1619
|
-
"@
|
|
1620
|
-
"@
|
|
1619
|
+
"@l.x/*/src",
|
|
1620
|
+
"@l.x/*/src/*"
|
|
1621
1621
|
],
|
|
1622
|
-
"message": "Deep imports from @
|
|
1622
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
1623
1623
|
}
|
|
1624
1624
|
]
|
|
1625
1625
|
}
|
|
@@ -1643,13 +1643,13 @@
|
|
|
1643
1643
|
"options": {
|
|
1644
1644
|
"paths": {
|
|
1645
1645
|
"utilities/src/telemetry/analytics/analytics": {
|
|
1646
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
1646
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
1647
1647
|
},
|
|
1648
1648
|
"utilities/src/telemetry/trace/Trace": {
|
|
1649
|
-
"message": "Please use the Trace in '
|
|
1649
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
1650
1650
|
},
|
|
1651
1651
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
1652
|
-
"message": "Please import Modal from `
|
|
1652
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
1653
1653
|
},
|
|
1654
1654
|
"react-native": {
|
|
1655
1655
|
"importNames": [
|
|
@@ -1688,19 +1688,19 @@
|
|
|
1688
1688
|
"utilities/src/format/localeBased": {
|
|
1689
1689
|
"message": "Use via `useLocalizationContext` instead."
|
|
1690
1690
|
},
|
|
1691
|
-
"
|
|
1691
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
1692
1692
|
"importNames": [
|
|
1693
1693
|
"useFiatConverter"
|
|
1694
1694
|
],
|
|
1695
1695
|
"message": "Use via `useLocalizationContext` instead."
|
|
1696
1696
|
},
|
|
1697
|
-
"
|
|
1697
|
+
"lx/src/features/language/formatter": {
|
|
1698
1698
|
"importNames": [
|
|
1699
1699
|
"useLocalizedFormatter"
|
|
1700
1700
|
],
|
|
1701
1701
|
"message": "Use via `useLocalizationContext` instead."
|
|
1702
1702
|
},
|
|
1703
|
-
"
|
|
1703
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
1704
1704
|
"importNames": [
|
|
1705
1705
|
"usePortfolioValueModifiers"
|
|
1706
1706
|
],
|
|
@@ -1710,16 +1710,16 @@
|
|
|
1710
1710
|
"importNames": [
|
|
1711
1711
|
"BottomSheetTextInput"
|
|
1712
1712
|
],
|
|
1713
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
1713
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
1714
1714
|
},
|
|
1715
1715
|
"expo-haptics": {
|
|
1716
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
1716
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
1717
1717
|
},
|
|
1718
1718
|
"@luxamm/analytics": {
|
|
1719
1719
|
"importNames": [
|
|
1720
1720
|
"sendAnalyticsEvent"
|
|
1721
1721
|
],
|
|
1722
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
1722
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
1723
1723
|
},
|
|
1724
1724
|
"@tamagui/core": {
|
|
1725
1725
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -1734,10 +1734,10 @@
|
|
|
1734
1734
|
},
|
|
1735
1735
|
{
|
|
1736
1736
|
"group": [
|
|
1737
|
-
"@
|
|
1738
|
-
"@
|
|
1737
|
+
"@l.x/*/src",
|
|
1738
|
+
"@l.x/*/src/*"
|
|
1739
1739
|
],
|
|
1740
|
-
"message": "Deep imports from @
|
|
1740
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
1741
1741
|
}
|
|
1742
1742
|
]
|
|
1743
1743
|
}
|
|
@@ -1761,13 +1761,13 @@
|
|
|
1761
1761
|
"options": {
|
|
1762
1762
|
"paths": {
|
|
1763
1763
|
"utilities/src/telemetry/analytics/analytics": {
|
|
1764
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
1764
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
1765
1765
|
},
|
|
1766
1766
|
"utilities/src/telemetry/trace/Trace": {
|
|
1767
|
-
"message": "Please use the Trace in '
|
|
1767
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
1768
1768
|
},
|
|
1769
1769
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
1770
|
-
"message": "Please import Modal from `
|
|
1770
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
1771
1771
|
},
|
|
1772
1772
|
"react-native": {
|
|
1773
1773
|
"importNames": [
|
|
@@ -1806,19 +1806,19 @@
|
|
|
1806
1806
|
"utilities/src/format/localeBased": {
|
|
1807
1807
|
"message": "Use via `useLocalizationContext` instead."
|
|
1808
1808
|
},
|
|
1809
|
-
"
|
|
1809
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
1810
1810
|
"importNames": [
|
|
1811
1811
|
"useFiatConverter"
|
|
1812
1812
|
],
|
|
1813
1813
|
"message": "Use via `useLocalizationContext` instead."
|
|
1814
1814
|
},
|
|
1815
|
-
"
|
|
1815
|
+
"lx/src/features/language/formatter": {
|
|
1816
1816
|
"importNames": [
|
|
1817
1817
|
"useLocalizedFormatter"
|
|
1818
1818
|
],
|
|
1819
1819
|
"message": "Use via `useLocalizationContext` instead."
|
|
1820
1820
|
},
|
|
1821
|
-
"
|
|
1821
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
1822
1822
|
"importNames": [
|
|
1823
1823
|
"usePortfolioValueModifiers"
|
|
1824
1824
|
],
|
|
@@ -1828,16 +1828,16 @@
|
|
|
1828
1828
|
"importNames": [
|
|
1829
1829
|
"BottomSheetTextInput"
|
|
1830
1830
|
],
|
|
1831
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
1831
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
1832
1832
|
},
|
|
1833
1833
|
"expo-haptics": {
|
|
1834
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
1834
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
1835
1835
|
},
|
|
1836
1836
|
"@luxamm/analytics": {
|
|
1837
1837
|
"importNames": [
|
|
1838
1838
|
"sendAnalyticsEvent"
|
|
1839
1839
|
],
|
|
1840
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
1840
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
1841
1841
|
},
|
|
1842
1842
|
"@tamagui/core": {
|
|
1843
1843
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -1852,10 +1852,10 @@
|
|
|
1852
1852
|
},
|
|
1853
1853
|
{
|
|
1854
1854
|
"group": [
|
|
1855
|
-
"@
|
|
1856
|
-
"@
|
|
1855
|
+
"@l.x/*/src",
|
|
1856
|
+
"@l.x/*/src/*"
|
|
1857
1857
|
],
|
|
1858
|
-
"message": "Deep imports from @
|
|
1858
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
1859
1859
|
}
|
|
1860
1860
|
]
|
|
1861
1861
|
}
|
|
@@ -1936,13 +1936,13 @@
|
|
|
1936
1936
|
"options": {
|
|
1937
1937
|
"paths": {
|
|
1938
1938
|
"utilities/src/telemetry/analytics/analytics": {
|
|
1939
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
1939
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
1940
1940
|
},
|
|
1941
1941
|
"utilities/src/telemetry/trace/Trace": {
|
|
1942
|
-
"message": "Please use the Trace in '
|
|
1942
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
1943
1943
|
},
|
|
1944
1944
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
1945
|
-
"message": "Please import Modal from `
|
|
1945
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
1946
1946
|
},
|
|
1947
1947
|
"react-native": {
|
|
1948
1948
|
"importNames": [
|
|
@@ -1981,19 +1981,19 @@
|
|
|
1981
1981
|
"utilities/src/format/localeBased": {
|
|
1982
1982
|
"message": "Use via `useLocalizationContext` instead."
|
|
1983
1983
|
},
|
|
1984
|
-
"
|
|
1984
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
1985
1985
|
"importNames": [
|
|
1986
1986
|
"useFiatConverter"
|
|
1987
1987
|
],
|
|
1988
1988
|
"message": "Use via `useLocalizationContext` instead."
|
|
1989
1989
|
},
|
|
1990
|
-
"
|
|
1990
|
+
"lx/src/features/language/formatter": {
|
|
1991
1991
|
"importNames": [
|
|
1992
1992
|
"useLocalizedFormatter"
|
|
1993
1993
|
],
|
|
1994
1994
|
"message": "Use via `useLocalizationContext` instead."
|
|
1995
1995
|
},
|
|
1996
|
-
"
|
|
1996
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
1997
1997
|
"importNames": [
|
|
1998
1998
|
"usePortfolioValueModifiers"
|
|
1999
1999
|
],
|
|
@@ -2003,16 +2003,16 @@
|
|
|
2003
2003
|
"importNames": [
|
|
2004
2004
|
"BottomSheetTextInput"
|
|
2005
2005
|
],
|
|
2006
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
2006
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
2007
2007
|
},
|
|
2008
2008
|
"expo-haptics": {
|
|
2009
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
2009
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
2010
2010
|
},
|
|
2011
2011
|
"@luxamm/analytics": {
|
|
2012
2012
|
"importNames": [
|
|
2013
2013
|
"sendAnalyticsEvent"
|
|
2014
2014
|
],
|
|
2015
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
2015
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
2016
2016
|
},
|
|
2017
2017
|
"@tamagui/core": {
|
|
2018
2018
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -2030,10 +2030,10 @@
|
|
|
2030
2030
|
},
|
|
2031
2031
|
{
|
|
2032
2032
|
"group": [
|
|
2033
|
-
"@
|
|
2034
|
-
"@
|
|
2033
|
+
"@l.x/*/src",
|
|
2034
|
+
"@l.x/*/src/*"
|
|
2035
2035
|
],
|
|
2036
|
-
"message": "Deep imports from @
|
|
2036
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
2037
2037
|
}
|
|
2038
2038
|
]
|
|
2039
2039
|
}
|
|
@@ -2058,13 +2058,13 @@
|
|
|
2058
2058
|
"options": {
|
|
2059
2059
|
"paths": {
|
|
2060
2060
|
"utilities/src/telemetry/analytics/analytics": {
|
|
2061
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
2061
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
2062
2062
|
},
|
|
2063
2063
|
"utilities/src/telemetry/trace/Trace": {
|
|
2064
|
-
"message": "Please use the Trace in '
|
|
2064
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
2065
2065
|
},
|
|
2066
2066
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
2067
|
-
"message": "Please import Modal from `
|
|
2067
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
2068
2068
|
},
|
|
2069
2069
|
"react-native": {
|
|
2070
2070
|
"importNames": [
|
|
@@ -2103,19 +2103,19 @@
|
|
|
2103
2103
|
"utilities/src/format/localeBased": {
|
|
2104
2104
|
"message": "Use via `useLocalizationContext` instead."
|
|
2105
2105
|
},
|
|
2106
|
-
"
|
|
2106
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
2107
2107
|
"importNames": [
|
|
2108
2108
|
"useFiatConverter"
|
|
2109
2109
|
],
|
|
2110
2110
|
"message": "Use via `useLocalizationContext` instead."
|
|
2111
2111
|
},
|
|
2112
|
-
"
|
|
2112
|
+
"lx/src/features/language/formatter": {
|
|
2113
2113
|
"importNames": [
|
|
2114
2114
|
"useLocalizedFormatter"
|
|
2115
2115
|
],
|
|
2116
2116
|
"message": "Use via `useLocalizationContext` instead."
|
|
2117
2117
|
},
|
|
2118
|
-
"
|
|
2118
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
2119
2119
|
"importNames": [
|
|
2120
2120
|
"usePortfolioValueModifiers"
|
|
2121
2121
|
],
|
|
@@ -2125,16 +2125,16 @@
|
|
|
2125
2125
|
"importNames": [
|
|
2126
2126
|
"BottomSheetTextInput"
|
|
2127
2127
|
],
|
|
2128
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
2128
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
2129
2129
|
},
|
|
2130
2130
|
"expo-haptics": {
|
|
2131
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
2131
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
2132
2132
|
},
|
|
2133
2133
|
"@luxamm/analytics": {
|
|
2134
2134
|
"importNames": [
|
|
2135
2135
|
"sendAnalyticsEvent"
|
|
2136
2136
|
],
|
|
2137
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
2137
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
2138
2138
|
},
|
|
2139
2139
|
"@tamagui/core": {
|
|
2140
2140
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -2152,10 +2152,10 @@
|
|
|
2152
2152
|
},
|
|
2153
2153
|
{
|
|
2154
2154
|
"group": [
|
|
2155
|
-
"@
|
|
2156
|
-
"@
|
|
2155
|
+
"@l.x/*/src",
|
|
2156
|
+
"@l.x/*/src/*"
|
|
2157
2157
|
],
|
|
2158
|
-
"message": "Deep imports from @
|
|
2158
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
2159
2159
|
}
|
|
2160
2160
|
]
|
|
2161
2161
|
}
|
|
@@ -2177,11 +2177,11 @@
|
|
|
2177
2177
|
},
|
|
2178
2178
|
{
|
|
2179
2179
|
"includes": [
|
|
2180
|
-
"pkgs/
|
|
2181
|
-
"!pkgs/
|
|
2182
|
-
"!pkgs/
|
|
2183
|
-
"!pkgs/
|
|
2184
|
-
"!pkgs/
|
|
2180
|
+
"pkgs/lx/**",
|
|
2181
|
+
"!pkgs/lx/**/*.test.ts",
|
|
2182
|
+
"!pkgs/lx/**/*.test.tsx",
|
|
2183
|
+
"!pkgs/lx/**/test/**",
|
|
2184
|
+
"!pkgs/lx/**/tests/**"
|
|
2185
2185
|
],
|
|
2186
2186
|
"linter": {
|
|
2187
2187
|
"rules": {
|
|
@@ -2191,13 +2191,13 @@
|
|
|
2191
2191
|
"options": {
|
|
2192
2192
|
"paths": {
|
|
2193
2193
|
"utilities/src/telemetry/analytics/analytics": {
|
|
2194
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
2194
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
2195
2195
|
},
|
|
2196
2196
|
"utilities/src/telemetry/trace/Trace": {
|
|
2197
|
-
"message": "Please use the Trace in '
|
|
2197
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
2198
2198
|
},
|
|
2199
2199
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
2200
|
-
"message": "Please import Modal from `
|
|
2200
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
2201
2201
|
},
|
|
2202
2202
|
"react-native": {
|
|
2203
2203
|
"importNames": [
|
|
@@ -2236,19 +2236,19 @@
|
|
|
2236
2236
|
"utilities/src/format/localeBased": {
|
|
2237
2237
|
"message": "Use via `useLocalizationContext` instead."
|
|
2238
2238
|
},
|
|
2239
|
-
"
|
|
2239
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
2240
2240
|
"importNames": [
|
|
2241
2241
|
"useFiatConverter"
|
|
2242
2242
|
],
|
|
2243
2243
|
"message": "Use via `useLocalizationContext` instead."
|
|
2244
2244
|
},
|
|
2245
|
-
"
|
|
2245
|
+
"lx/src/features/language/formatter": {
|
|
2246
2246
|
"importNames": [
|
|
2247
2247
|
"useLocalizedFormatter"
|
|
2248
2248
|
],
|
|
2249
2249
|
"message": "Use via `useLocalizationContext` instead."
|
|
2250
2250
|
},
|
|
2251
|
-
"
|
|
2251
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
2252
2252
|
"importNames": [
|
|
2253
2253
|
"usePortfolioValueModifiers"
|
|
2254
2254
|
],
|
|
@@ -2258,48 +2258,48 @@
|
|
|
2258
2258
|
"importNames": [
|
|
2259
2259
|
"BottomSheetTextInput"
|
|
2260
2260
|
],
|
|
2261
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
2261
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
2262
2262
|
},
|
|
2263
2263
|
"expo-haptics": {
|
|
2264
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
2264
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
2265
2265
|
},
|
|
2266
2266
|
"@luxamm/analytics": {
|
|
2267
2267
|
"importNames": [
|
|
2268
2268
|
"sendAnalyticsEvent"
|
|
2269
2269
|
],
|
|
2270
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
2270
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
2271
2271
|
},
|
|
2272
2272
|
"@tamagui/core": {
|
|
2273
2273
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
2274
2274
|
},
|
|
2275
|
-
"
|
|
2276
|
-
"message": "Avoid importing directly from
|
|
2275
|
+
"lx/src": {
|
|
2276
|
+
"message": "Avoid importing directly from lx/src from within the lx package which causes circular imports."
|
|
2277
2277
|
},
|
|
2278
2278
|
"@luxamm/sdk-core": {
|
|
2279
2279
|
"importNames": [
|
|
2280
2280
|
"ChainId"
|
|
2281
2281
|
],
|
|
2282
|
-
"message": "Don't use ChainId from @luxamm/sdk-core. Use the UniverseChainId from universe/
|
|
2282
|
+
"message": "Don't use ChainId from @luxamm/sdk-core. Use the UniverseChainId from universe/lx."
|
|
2283
2283
|
},
|
|
2284
|
-
"
|
|
2284
|
+
"lx/src/features/chains/hooks/useOrderedChainIds": {
|
|
2285
2285
|
"importNames": [
|
|
2286
2286
|
"useOrderedChainIds"
|
|
2287
2287
|
],
|
|
2288
2288
|
"message": "Use `useEnabledChains` instead, which returns the ordered chains that are currently enabled."
|
|
2289
2289
|
},
|
|
2290
|
-
"
|
|
2290
|
+
"lx/src/features/settings/selectors": {
|
|
2291
2291
|
"importNames": [
|
|
2292
2292
|
"selectIsTestnetModeEnabled"
|
|
2293
2293
|
],
|
|
2294
2294
|
"message": "Use `useEnabledChains` instead."
|
|
2295
2295
|
},
|
|
2296
|
-
"
|
|
2296
|
+
"lx/src/features/chains/chainInfo": {
|
|
2297
2297
|
"importNames": [
|
|
2298
2298
|
"UNIVERSE_CHAIN_INFO"
|
|
2299
2299
|
],
|
|
2300
|
-
"message": "Use useChainInfo or helpers in pkgs/
|
|
2300
|
+
"message": "Use useChainInfo or helpers in pkgs/lx/src/features/chains/utils.ts when possible!"
|
|
2301
2301
|
},
|
|
2302
|
-
"
|
|
2302
|
+
"lx/src/data/graphql/lx-data-api/__generated__/react-hooks": {
|
|
2303
2303
|
"importNames": [
|
|
2304
2304
|
"useAccountListQuery"
|
|
2305
2305
|
],
|
|
@@ -2315,10 +2315,10 @@
|
|
|
2315
2315
|
},
|
|
2316
2316
|
{
|
|
2317
2317
|
"group": [
|
|
2318
|
-
"@
|
|
2319
|
-
"@
|
|
2318
|
+
"@l.x/*/src",
|
|
2319
|
+
"@l.x/*/src/*"
|
|
2320
2320
|
],
|
|
2321
|
-
"message": "Deep imports from @
|
|
2321
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
2322
2322
|
}
|
|
2323
2323
|
]
|
|
2324
2324
|
}
|
|
@@ -2329,12 +2329,12 @@
|
|
|
2329
2329
|
},
|
|
2330
2330
|
{
|
|
2331
2331
|
"includes": [
|
|
2332
|
-
"pkgs/
|
|
2333
|
-
"pkgs/
|
|
2334
|
-
"pkgs/
|
|
2335
|
-
"pkgs/
|
|
2336
|
-
"pkgs/
|
|
2337
|
-
"pkgs/
|
|
2332
|
+
"pkgs/lx/src/index.ts",
|
|
2333
|
+
"pkgs/lx/src/features/telemetry/constants/index.ts",
|
|
2334
|
+
"pkgs/lx/src/features/telemetry/constants/trace/index.ts",
|
|
2335
|
+
"pkgs/lx/src/i18n/index.ts",
|
|
2336
|
+
"pkgs/lx/src/state/index.ts",
|
|
2337
|
+
"pkgs/lx/src/test/**"
|
|
2338
2338
|
],
|
|
2339
2339
|
"linter": {
|
|
2340
2340
|
"rules": {
|
|
@@ -2344,13 +2344,13 @@
|
|
|
2344
2344
|
"options": {
|
|
2345
2345
|
"paths": {
|
|
2346
2346
|
"utilities/src/telemetry/analytics/analytics": {
|
|
2347
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
2347
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
2348
2348
|
},
|
|
2349
2349
|
"utilities/src/telemetry/trace/Trace": {
|
|
2350
|
-
"message": "Please use the Trace in '
|
|
2350
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
2351
2351
|
},
|
|
2352
2352
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
2353
|
-
"message": "Please import Modal from `
|
|
2353
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
2354
2354
|
},
|
|
2355
2355
|
"react-native": {
|
|
2356
2356
|
"importNames": [
|
|
@@ -2386,19 +2386,19 @@
|
|
|
2386
2386
|
"expo-localization": {
|
|
2387
2387
|
"message": "Avoid using due to issue with unsupported locales. Use utilities/src/device/locales.ts getDeviceLocales instead"
|
|
2388
2388
|
},
|
|
2389
|
-
"
|
|
2389
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
2390
2390
|
"importNames": [
|
|
2391
2391
|
"useFiatConverter"
|
|
2392
2392
|
],
|
|
2393
2393
|
"message": "Use via `useLocalizationContext` instead."
|
|
2394
2394
|
},
|
|
2395
|
-
"
|
|
2395
|
+
"lx/src/features/language/formatter": {
|
|
2396
2396
|
"importNames": [
|
|
2397
2397
|
"useLocalizedFormatter"
|
|
2398
2398
|
],
|
|
2399
2399
|
"message": "Use via `useLocalizationContext` instead."
|
|
2400
2400
|
},
|
|
2401
|
-
"
|
|
2401
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
2402
2402
|
"importNames": [
|
|
2403
2403
|
"usePortfolioValueModifiers"
|
|
2404
2404
|
],
|
|
@@ -2408,16 +2408,16 @@
|
|
|
2408
2408
|
"importNames": [
|
|
2409
2409
|
"BottomSheetTextInput"
|
|
2410
2410
|
],
|
|
2411
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
2411
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
2412
2412
|
},
|
|
2413
2413
|
"expo-haptics": {
|
|
2414
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
2414
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
2415
2415
|
},
|
|
2416
2416
|
"@luxamm/analytics": {
|
|
2417
2417
|
"importNames": [
|
|
2418
2418
|
"sendAnalyticsEvent"
|
|
2419
2419
|
],
|
|
2420
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
2420
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
2421
2421
|
},
|
|
2422
2422
|
"@tamagui/core": {
|
|
2423
2423
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -2432,10 +2432,10 @@
|
|
|
2432
2432
|
},
|
|
2433
2433
|
{
|
|
2434
2434
|
"group": [
|
|
2435
|
-
"@
|
|
2436
|
-
"@
|
|
2435
|
+
"@l.x/*/src",
|
|
2436
|
+
"@l.x/*/src/*"
|
|
2437
2437
|
],
|
|
2438
|
-
"message": "Deep imports from @
|
|
2438
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
2439
2439
|
}
|
|
2440
2440
|
]
|
|
2441
2441
|
}
|
|
@@ -2446,8 +2446,8 @@
|
|
|
2446
2446
|
},
|
|
2447
2447
|
{
|
|
2448
2448
|
"includes": [
|
|
2449
|
-
"pkgs/
|
|
2450
|
-
"pkgs/
|
|
2449
|
+
"pkgs/lx/src/data/**/__generated__/**",
|
|
2450
|
+
"pkgs/lx/src/abis/types/**"
|
|
2451
2451
|
],
|
|
2452
2452
|
"linter": {
|
|
2453
2453
|
"enabled": false
|
|
@@ -2455,7 +2455,7 @@
|
|
|
2455
2455
|
},
|
|
2456
2456
|
{
|
|
2457
2457
|
"includes": [
|
|
2458
|
-
"pkgs/
|
|
2458
|
+
"pkgs/lx/vite/**"
|
|
2459
2459
|
],
|
|
2460
2460
|
"linter": {
|
|
2461
2461
|
"enabled": false
|
|
@@ -2513,13 +2513,13 @@
|
|
|
2513
2513
|
"options": {
|
|
2514
2514
|
"paths": {
|
|
2515
2515
|
"utilities/src/telemetry/analytics/analytics": {
|
|
2516
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
2516
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
2517
2517
|
},
|
|
2518
2518
|
"utilities/src/telemetry/trace/Trace": {
|
|
2519
|
-
"message": "Please use the Trace in '
|
|
2519
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
2520
2520
|
},
|
|
2521
2521
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
2522
|
-
"message": "Please import Modal from `
|
|
2522
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
2523
2523
|
},
|
|
2524
2524
|
"react-native": {
|
|
2525
2525
|
"importNames": [
|
|
@@ -2558,19 +2558,19 @@
|
|
|
2558
2558
|
"utilities/src/format/localeBased": {
|
|
2559
2559
|
"message": "Use via `useLocalizationContext` instead."
|
|
2560
2560
|
},
|
|
2561
|
-
"
|
|
2561
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
2562
2562
|
"importNames": [
|
|
2563
2563
|
"useFiatConverter"
|
|
2564
2564
|
],
|
|
2565
2565
|
"message": "Use via `useLocalizationContext` instead."
|
|
2566
2566
|
},
|
|
2567
|
-
"
|
|
2567
|
+
"lx/src/features/language/formatter": {
|
|
2568
2568
|
"importNames": [
|
|
2569
2569
|
"useLocalizedFormatter"
|
|
2570
2570
|
],
|
|
2571
2571
|
"message": "Use via `useLocalizationContext` instead."
|
|
2572
2572
|
},
|
|
2573
|
-
"
|
|
2573
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
2574
2574
|
"importNames": [
|
|
2575
2575
|
"usePortfolioValueModifiers"
|
|
2576
2576
|
],
|
|
@@ -2580,16 +2580,16 @@
|
|
|
2580
2580
|
"importNames": [
|
|
2581
2581
|
"BottomSheetTextInput"
|
|
2582
2582
|
],
|
|
2583
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
2583
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
2584
2584
|
},
|
|
2585
2585
|
"expo-haptics": {
|
|
2586
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
2586
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
2587
2587
|
},
|
|
2588
2588
|
"@luxamm/analytics": {
|
|
2589
2589
|
"importNames": [
|
|
2590
2590
|
"sendAnalyticsEvent"
|
|
2591
2591
|
],
|
|
2592
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
2592
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
2593
2593
|
},
|
|
2594
2594
|
"@tamagui/core": {
|
|
2595
2595
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -2607,10 +2607,10 @@
|
|
|
2607
2607
|
},
|
|
2608
2608
|
{
|
|
2609
2609
|
"group": [
|
|
2610
|
-
"@
|
|
2611
|
-
"@
|
|
2610
|
+
"@l.x/*/src",
|
|
2611
|
+
"@l.x/*/src/*"
|
|
2612
2612
|
],
|
|
2613
|
-
"message": "Deep imports from @
|
|
2613
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
2614
2614
|
}
|
|
2615
2615
|
]
|
|
2616
2616
|
}
|
|
@@ -2681,13 +2681,13 @@
|
|
|
2681
2681
|
"options": {
|
|
2682
2682
|
"paths": {
|
|
2683
2683
|
"utilities/src/telemetry/analytics/analytics": {
|
|
2684
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
2684
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
2685
2685
|
},
|
|
2686
2686
|
"utilities/src/telemetry/trace/Trace": {
|
|
2687
|
-
"message": "Please use the Trace in '
|
|
2687
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
2688
2688
|
},
|
|
2689
2689
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
2690
|
-
"message": "Please import Modal from `
|
|
2690
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
2691
2691
|
},
|
|
2692
2692
|
"react-native": {
|
|
2693
2693
|
"importNames": [
|
|
@@ -2726,19 +2726,19 @@
|
|
|
2726
2726
|
"utilities/src/format/localeBased": {
|
|
2727
2727
|
"message": "Use via `useLocalizationContext` instead."
|
|
2728
2728
|
},
|
|
2729
|
-
"
|
|
2729
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
2730
2730
|
"importNames": [
|
|
2731
2731
|
"useFiatConverter"
|
|
2732
2732
|
],
|
|
2733
2733
|
"message": "Use via `useLocalizationContext` instead."
|
|
2734
2734
|
},
|
|
2735
|
-
"
|
|
2735
|
+
"lx/src/features/language/formatter": {
|
|
2736
2736
|
"importNames": [
|
|
2737
2737
|
"useLocalizedFormatter"
|
|
2738
2738
|
],
|
|
2739
2739
|
"message": "Use via `useLocalizationContext` instead."
|
|
2740
2740
|
},
|
|
2741
|
-
"
|
|
2741
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
2742
2742
|
"importNames": [
|
|
2743
2743
|
"usePortfolioValueModifiers"
|
|
2744
2744
|
],
|
|
@@ -2748,16 +2748,16 @@
|
|
|
2748
2748
|
"importNames": [
|
|
2749
2749
|
"BottomSheetTextInput"
|
|
2750
2750
|
],
|
|
2751
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
2751
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
2752
2752
|
},
|
|
2753
2753
|
"expo-haptics": {
|
|
2754
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
2754
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
2755
2755
|
},
|
|
2756
2756
|
"@luxamm/analytics": {
|
|
2757
2757
|
"importNames": [
|
|
2758
2758
|
"sendAnalyticsEvent"
|
|
2759
2759
|
],
|
|
2760
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
2760
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
2761
2761
|
},
|
|
2762
2762
|
"@tamagui/core": {
|
|
2763
2763
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -2775,10 +2775,10 @@
|
|
|
2775
2775
|
},
|
|
2776
2776
|
{
|
|
2777
2777
|
"group": [
|
|
2778
|
-
"@
|
|
2779
|
-
"@
|
|
2778
|
+
"@l.x/*/src",
|
|
2779
|
+
"@l.x/*/src/*"
|
|
2780
2780
|
],
|
|
2781
|
-
"message": "Deep imports from @
|
|
2781
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
2782
2782
|
}
|
|
2783
2783
|
]
|
|
2784
2784
|
}
|
|
@@ -2906,13 +2906,13 @@
|
|
|
2906
2906
|
"options": {
|
|
2907
2907
|
"paths": {
|
|
2908
2908
|
"utilities/src/telemetry/analytics/analytics": {
|
|
2909
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
2909
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
2910
2910
|
},
|
|
2911
2911
|
"utilities/src/telemetry/trace/Trace": {
|
|
2912
|
-
"message": "Please use the Trace in '
|
|
2912
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
2913
2913
|
},
|
|
2914
2914
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
2915
|
-
"message": "Please import Modal from `
|
|
2915
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
2916
2916
|
},
|
|
2917
2917
|
"react-native": {
|
|
2918
2918
|
"importNames": [
|
|
@@ -2951,19 +2951,19 @@
|
|
|
2951
2951
|
"utilities/src/format/localeBased": {
|
|
2952
2952
|
"message": "Use via `useLocalizationContext` instead."
|
|
2953
2953
|
},
|
|
2954
|
-
"
|
|
2954
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
2955
2955
|
"importNames": [
|
|
2956
2956
|
"useFiatConverter"
|
|
2957
2957
|
],
|
|
2958
2958
|
"message": "Use via `useLocalizationContext` instead."
|
|
2959
2959
|
},
|
|
2960
|
-
"
|
|
2960
|
+
"lx/src/features/language/formatter": {
|
|
2961
2961
|
"importNames": [
|
|
2962
2962
|
"useLocalizedFormatter"
|
|
2963
2963
|
],
|
|
2964
2964
|
"message": "Use via `useLocalizationContext` instead."
|
|
2965
2965
|
},
|
|
2966
|
-
"
|
|
2966
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
2967
2967
|
"importNames": [
|
|
2968
2968
|
"usePortfolioValueModifiers"
|
|
2969
2969
|
],
|
|
@@ -2973,16 +2973,16 @@
|
|
|
2973
2973
|
"importNames": [
|
|
2974
2974
|
"BottomSheetTextInput"
|
|
2975
2975
|
],
|
|
2976
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
2976
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
2977
2977
|
},
|
|
2978
2978
|
"expo-haptics": {
|
|
2979
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
2979
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
2980
2980
|
},
|
|
2981
2981
|
"@luxamm/analytics": {
|
|
2982
2982
|
"importNames": [
|
|
2983
2983
|
"sendAnalyticsEvent"
|
|
2984
2984
|
],
|
|
2985
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
2985
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
2986
2986
|
},
|
|
2987
2987
|
"@tamagui/core": {
|
|
2988
2988
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -3026,11 +3026,11 @@
|
|
|
3026
3026
|
],
|
|
3027
3027
|
"message": "Import wrapped utilities from internal hooks instead: useAccount from `hooks/useAccount`, useConnect from `hooks/useConnect`, useDisconnect from `hooks/useDisconnect`, useBlockNumber from `hooks/useBlockNumber`."
|
|
3028
3028
|
},
|
|
3029
|
-
"
|
|
3029
|
+
"lx/src/features/chains/chainInfo": {
|
|
3030
3030
|
"importNames": [
|
|
3031
3031
|
"UNIVERSE_CHAIN_INFO"
|
|
3032
3032
|
],
|
|
3033
|
-
"message": "Use useChainInfo or helpers in pkgs/
|
|
3033
|
+
"message": "Use useChainInfo or helpers in pkgs/lx/src/features/chains/utils.ts when possible!"
|
|
3034
3034
|
}
|
|
3035
3035
|
},
|
|
3036
3036
|
"patterns": [
|
|
@@ -3042,10 +3042,10 @@
|
|
|
3042
3042
|
},
|
|
3043
3043
|
{
|
|
3044
3044
|
"group": [
|
|
3045
|
-
"@
|
|
3046
|
-
"@
|
|
3045
|
+
"@l.x/*/src",
|
|
3046
|
+
"@l.x/*/src/*"
|
|
3047
3047
|
],
|
|
3048
|
-
"message": "Deep imports from @
|
|
3048
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
3049
3049
|
}
|
|
3050
3050
|
]
|
|
3051
3051
|
}
|
|
@@ -3111,13 +3111,13 @@
|
|
|
3111
3111
|
"options": {
|
|
3112
3112
|
"paths": {
|
|
3113
3113
|
"utilities/src/telemetry/analytics/analytics": {
|
|
3114
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
3114
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
3115
3115
|
},
|
|
3116
3116
|
"utilities/src/telemetry/trace/Trace": {
|
|
3117
|
-
"message": "Please use the Trace in '
|
|
3117
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
3118
3118
|
},
|
|
3119
3119
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
3120
|
-
"message": "Please import Modal from `
|
|
3120
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
3121
3121
|
},
|
|
3122
3122
|
"react-native": {
|
|
3123
3123
|
"importNames": [
|
|
@@ -3156,19 +3156,19 @@
|
|
|
3156
3156
|
"utilities/src/format/localeBased": {
|
|
3157
3157
|
"message": "Use via `useLocalizationContext` instead."
|
|
3158
3158
|
},
|
|
3159
|
-
"
|
|
3159
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
3160
3160
|
"importNames": [
|
|
3161
3161
|
"useFiatConverter"
|
|
3162
3162
|
],
|
|
3163
3163
|
"message": "Use via `useLocalizationContext` instead."
|
|
3164
3164
|
},
|
|
3165
|
-
"
|
|
3165
|
+
"lx/src/features/language/formatter": {
|
|
3166
3166
|
"importNames": [
|
|
3167
3167
|
"useLocalizedFormatter"
|
|
3168
3168
|
],
|
|
3169
3169
|
"message": "Use via `useLocalizationContext` instead."
|
|
3170
3170
|
},
|
|
3171
|
-
"
|
|
3171
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
3172
3172
|
"importNames": [
|
|
3173
3173
|
"usePortfolioValueModifiers"
|
|
3174
3174
|
],
|
|
@@ -3178,16 +3178,16 @@
|
|
|
3178
3178
|
"importNames": [
|
|
3179
3179
|
"BottomSheetTextInput"
|
|
3180
3180
|
],
|
|
3181
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
3181
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
3182
3182
|
},
|
|
3183
3183
|
"expo-haptics": {
|
|
3184
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
3184
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
3185
3185
|
},
|
|
3186
3186
|
"@luxamm/analytics": {
|
|
3187
3187
|
"importNames": [
|
|
3188
3188
|
"sendAnalyticsEvent"
|
|
3189
3189
|
],
|
|
3190
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
3190
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
3191
3191
|
},
|
|
3192
3192
|
"@tamagui/core": {
|
|
3193
3193
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -3195,7 +3195,7 @@
|
|
|
3195
3195
|
"wallet/src": {
|
|
3196
3196
|
"message": "Avoid importing directly from wallet/src from within the wallet package which causes circular imports."
|
|
3197
3197
|
},
|
|
3198
|
-
"
|
|
3198
|
+
"lx/src/features/dataApi/balances/balancesRest": {
|
|
3199
3199
|
"importNames": [
|
|
3200
3200
|
"useRESTPortfolioTotalValue"
|
|
3201
3201
|
],
|
|
@@ -3214,10 +3214,10 @@
|
|
|
3214
3214
|
},
|
|
3215
3215
|
{
|
|
3216
3216
|
"group": [
|
|
3217
|
-
"@
|
|
3218
|
-
"@
|
|
3217
|
+
"@l.x/*/src",
|
|
3218
|
+
"@l.x/*/src/*"
|
|
3219
3219
|
],
|
|
3220
|
-
"message": "Deep imports from @
|
|
3220
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
3221
3221
|
}
|
|
3222
3222
|
]
|
|
3223
3223
|
}
|
|
@@ -3241,13 +3241,13 @@
|
|
|
3241
3241
|
"options": {
|
|
3242
3242
|
"paths": {
|
|
3243
3243
|
"utilities/src/telemetry/analytics/analytics": {
|
|
3244
|
-
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/
|
|
3244
|
+
"message": "Please only use this for initialization, tests, flushing, and internal usage. Otherwise use `pkgs/lx/src/features/telemetry`"
|
|
3245
3245
|
},
|
|
3246
3246
|
"utilities/src/telemetry/trace/Trace": {
|
|
3247
|
-
"message": "Please use the Trace in '
|
|
3247
|
+
"message": "Please use the Trace in 'lx/src/features/telemetry/Trace' for app level usage!"
|
|
3248
3248
|
},
|
|
3249
3249
|
"ui/src/components/modal/AdaptiveWebModal": {
|
|
3250
|
-
"message": "Please import Modal from `
|
|
3250
|
+
"message": "Please import Modal from `lx/src/components/modals/Modal` instead. Modal uses AdaptiveWebModal under the hood but has extra logic for handling animation, mounting, and dismounting."
|
|
3251
3251
|
},
|
|
3252
3252
|
"react-native": {
|
|
3253
3253
|
"importNames": [
|
|
@@ -3286,19 +3286,19 @@
|
|
|
3286
3286
|
"utilities/src/format/localeBased": {
|
|
3287
3287
|
"message": "Use via `useLocalizationContext` instead."
|
|
3288
3288
|
},
|
|
3289
|
-
"
|
|
3289
|
+
"lx/src/features/fiatCurrency/conversion": {
|
|
3290
3290
|
"importNames": [
|
|
3291
3291
|
"useFiatConverter"
|
|
3292
3292
|
],
|
|
3293
3293
|
"message": "Use via `useLocalizationContext` instead."
|
|
3294
3294
|
},
|
|
3295
|
-
"
|
|
3295
|
+
"lx/src/features/language/formatter": {
|
|
3296
3296
|
"importNames": [
|
|
3297
3297
|
"useLocalizedFormatter"
|
|
3298
3298
|
],
|
|
3299
3299
|
"message": "Use via `useLocalizationContext` instead."
|
|
3300
3300
|
},
|
|
3301
|
-
"
|
|
3301
|
+
"lx/src/features/dataApi/balances/balances": {
|
|
3302
3302
|
"importNames": [
|
|
3303
3303
|
"usePortfolioValueModifiers"
|
|
3304
3304
|
],
|
|
@@ -3308,16 +3308,16 @@
|
|
|
3308
3308
|
"importNames": [
|
|
3309
3309
|
"BottomSheetTextInput"
|
|
3310
3310
|
],
|
|
3311
|
-
"message": "Use our internal BottomSheetTextInput wrapper from /
|
|
3311
|
+
"message": "Use our internal BottomSheetTextInput wrapper from /lx/src/components/modals/Modal."
|
|
3312
3312
|
},
|
|
3313
3313
|
"expo-haptics": {
|
|
3314
|
-
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/
|
|
3314
|
+
"message": "Use our internal HapticFeedback wrapper instead: import { HapticFeedback } from pkgs/lx/src/features/settings/useHapticFeedback/types"
|
|
3315
3315
|
},
|
|
3316
3316
|
"@luxamm/analytics": {
|
|
3317
3317
|
"importNames": [
|
|
3318
3318
|
"sendAnalyticsEvent"
|
|
3319
3319
|
],
|
|
3320
|
-
"message": "Please use the typed `sendAnalyticsEvent` in '
|
|
3320
|
+
"message": "Please use the typed `sendAnalyticsEvent` in 'lx/src/features/telemetry/send'"
|
|
3321
3321
|
},
|
|
3322
3322
|
"@tamagui/core": {
|
|
3323
3323
|
"message": "Please import from 'tamagui' directly to prevent mismatches."
|
|
@@ -3332,10 +3332,10 @@
|
|
|
3332
3332
|
},
|
|
3333
3333
|
{
|
|
3334
3334
|
"group": [
|
|
3335
|
-
"@
|
|
3336
|
-
"@
|
|
3335
|
+
"@l.x/*/src",
|
|
3336
|
+
"@l.x/*/src/*"
|
|
3337
3337
|
],
|
|
3338
|
-
"message": "Deep imports from @
|
|
3338
|
+
"message": "Deep imports from @l.x/* packages are forbidden. Import from the package root instead (e.g., '@l.x/api', '@l.x/config'). All public APIs are exported from package roots."
|
|
3339
3339
|
}
|
|
3340
3340
|
]
|
|
3341
3341
|
}
|