issun-bevy 0.10.0

ISSUN plugins for Bevy ECS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
// cSpell:ignore issun walkdir
//! Linting Tests for issun-bevy Best Practices
//!
//! Enforces coding standards via static analysis:
//! 1. Reflect attributes on Bevy types
//! 2. Entity query safety (no .unwrap() on queries)
//! 3. Config resource Default implementation
//!
//! ⚠️ IMPORTANT: Bevy 0.17 Message types only require #[derive(Reflect)]
//! - ReflectMessage helper does NOT exist in Bevy 0.17
//! - Message trait is just: `Send + Sync + 'static`
//! - #[reflect(Message)] is not needed (and will cause compile errors)

use std::collections::HashSet;
use std::fs;
use std::path::Path;
use syn::{visit::Visit, Expr, ExprMethodCall, Item, ItemFn, ItemStruct};
use walkdir::WalkDir;

struct ReflectVisitor {
    errors: Vec<String>,
    current_file: String,
}

/// Check a directory for Reflect violations
fn check_reflect_violations(target_dir: &str) -> Vec<String> {
    let mut visitor = ReflectVisitor {
        errors: Vec::new(),
        current_file: String::new(),
    };

    if !Path::new(target_dir).exists() {
        return Vec::new();
    }

    for entry in WalkDir::new(target_dir).into_iter().filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.extension().is_some_and(|ext| ext == "rs") {
            visitor.current_file = path.display().to_string();
            let content = fs::read_to_string(path).unwrap();
            if let Ok(file) = syn::parse_file(&content) {
                visitor.visit_file(&file);
            }
        }
    }

    visitor.errors
}

impl<'ast> Visit<'ast> for ReflectVisitor {
    fn visit_item_struct(&mut self, node: &'ast ItemStruct) {
        // Skip types marked with #[allow(missing_reflect)]
        // This is used for generic types that cannot implement Reflect
        if self.has_allow_attr(node, "missing_reflect") {
            syn::visit::visit_item_struct(self, node);
            return;
        }

        // Detect structs that derive Component/Resource/Message/Event
        // ⚠️ Bevy 0.17: buffered events use Message, observer events use Event
        let derived_types = ["Component", "Resource", "Message", "Event"];

        for ty in &derived_types {
            if self.has_derive(node, ty) {
                if !self.has_derive(node, "Reflect") {
                    self.errors.push(format!(
                        "{} - '{}' derives {} but missing #[derive(Reflect)]",
                        self.current_file, node.ident, ty
                    ));
                }

                // ⚠️ CRITICAL: Bevy 0.17 doesn't have ReflectMessage or ReflectEvent
                // Message and Event types only need #[derive(Reflect)], not #[reflect(...)]
                // See: https://github.com/bevyengine/bevy/discussions/11587
                // Skip #[reflect(...)] check if #[allow(missing_reflect_attr)] is present
                if *ty != "Message"
                    && *ty != "Event"
                    && !self.has_reflect_attr(node, ty)
                    && !self.has_allow_attr(node, "missing_reflect_attr")
                {
                    self.errors.push(format!(
                        "{} - '{}' derives {} but missing #[reflect({})]",
                        self.current_file, node.ident, ty, ty
                    ));
                }
            }
        }

        syn::visit::visit_item_struct(self, node);
    }
}

impl ReflectVisitor {
    fn has_derive(&self, node: &ItemStruct, name: &str) -> bool {
        node.attrs.iter().any(|attr| {
            if !attr.path().is_ident("derive") {
                return false;
            }
            attr.parse_args_with(
                syn::punctuated::Punctuated::<syn::Path, syn::Token![,]>::parse_terminated,
            )
            .map(|list| list.iter().any(|p| p.is_ident(name)))
            .unwrap_or(false)
        })
    }

    fn has_reflect_attr(&self, node: &ItemStruct, ty: &str) -> bool {
        use quote::ToTokens;
        node.attrs.iter().any(|attr| {
            attr.path().is_ident("reflect") && attr.meta.to_token_stream().to_string().contains(ty)
        })
    }

    fn has_allow_attr(&self, node: &ItemStruct, lint_name: &str) -> bool {
        node.attrs.iter().any(|attr| {
            if !attr.path().is_ident("allow") {
                return false;
            }
            attr.parse_args_with(
                syn::punctuated::Punctuated::<syn::Path, syn::Token![,]>::parse_terminated,
            )
            .map(|list| list.iter().any(|p| p.is_ident(lint_name)))
            .unwrap_or(false)
        })
    }
}

//
// ═══════════════════════════════════════════════════════════════════════════
// Entity Query Safety Lint
// ═══════════════════════════════════════════════════════════════════════════
//

struct QuerySafetyVisitor {
    errors: Vec<String>,
    current_file: String,
    in_test_code: bool,
}

/// Check for unsafe .unwrap() usage on Query::get() calls
fn check_query_safety_violations(target_dir: &str) -> Vec<String> {
    let mut visitor = QuerySafetyVisitor {
        errors: Vec::new(),
        current_file: String::new(),
        in_test_code: false,
    };

    if !Path::new(target_dir).exists() {
        return Vec::new();
    }

    for entry in WalkDir::new(target_dir).into_iter().filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.extension().is_some_and(|ext| ext == "rs") {
            visitor.current_file = path.display().to_string();
            let content = fs::read_to_string(path).unwrap();
            if let Ok(file) = syn::parse_file(&content) {
                visitor.visit_file(&file);
            }
        }
    }

    visitor.errors
}

impl<'ast> Visit<'ast> for QuerySafetyVisitor {
    fn visit_item_fn(&mut self, node: &'ast ItemFn) {
        // Check if this is a test function
        let was_in_test = self.in_test_code;
        let is_test = node
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("test") || attr.path().is_ident("cfg"));

        if is_test {
            self.in_test_code = true;
        }

        syn::visit::visit_item_fn(self, node);

        self.in_test_code = was_in_test;
    }

    fn visit_expr_method_call(&mut self, node: &'ast ExprMethodCall) {
        // Skip if we're in test code
        if !self.in_test_code {
            // Check for .unwrap() after .get() or .get_mut()
            if node.method == "unwrap" {
                if let Expr::MethodCall(inner) = &*node.receiver {
                    if inner.method == "get" || inner.method == "get_mut" {
                        // Check if the receiver looks like a query
                        // This is a heuristic: if the previous method call is on something
                        // that could be a Query, flag it
                        self.errors.push(format!(
                            "{} - Unsafe .unwrap() on query.{}(). Use 'if let Ok(...) = query.{}(...)' instead",
                            self.current_file,
                            inner.method,
                            inner.method
                        ));
                    }
                }
            }

            // Check for .expect() after .get() or .get_mut()
            if node.method == "expect" {
                if let Expr::MethodCall(inner) = &*node.receiver {
                    if inner.method == "get" || inner.method == "get_mut" {
                        self.errors.push(format!(
                            "{} - Unsafe .expect() on query.{}(). Use 'if let Ok(...) = query.{}(...)' instead",
                            self.current_file,
                            inner.method,
                            inner.method
                        ));
                    }
                }
            }
        }

        syn::visit::visit_expr_method_call(self, node);
    }
}

//
// ═══════════════════════════════════════════════════════════════════════════
// Config Resource Default Lint
// ═══════════════════════════════════════════════════════════════════════════
//

/// Check that Config resources have Default implementation
fn check_config_default_violations(target_dir: &str) -> Vec<String> {
    let mut errors = Vec::new();

    if !Path::new(target_dir).exists() {
        return Vec::new();
    }

    for entry in WalkDir::new(target_dir).into_iter().filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.extension().is_some_and(|ext| ext == "rs") {
            let file_path = path.display().to_string();
            let content = fs::read_to_string(path).unwrap();
            if let Ok(file) = syn::parse_file(&content) {
                // Find Config structs
                let config_structs = file
                    .items
                    .iter()
                    .filter_map(|item| {
                        if let Item::Struct(s) = item {
                            let is_config = s.ident.to_string().ends_with("Config");
                            let has_resource = s.attrs.iter().any(|attr| {
                                if attr.path().is_ident("derive") {
                                    attr
                                            .parse_args_with(
                                                syn::punctuated::Punctuated::<
                                                    syn::Path,
                                                    syn::Token![,],
                                                >::parse_terminated,
                                            )
                                            .map(|list| list.iter().any(|p| p.is_ident("Resource")))
                                            .unwrap_or(false)
                                } else {
                                    false
                                }
                            });

                            if is_config && has_resource {
                                Some(s.ident.to_string())
                            } else {
                                None
                            }
                        } else {
                            None
                        }
                    })
                    .collect::<Vec<_>>();

                // Find Default implementations
                // cSpell:ignore impls
                let default_impls = file
                    .items
                    .iter()
                    .filter_map(|item| {
                        if let Item::Impl(imp) = item {
                            if let Some((_, trait_path, _)) = &imp.trait_ {
                                if trait_path
                                    .segments
                                    .last()
                                    .map(|s| s.ident == "Default")
                                    .unwrap_or(false)
                                {
                                    if let syn::Type::Path(type_path) = &*imp.self_ty {
                                        return type_path
                                            .path
                                            .segments
                                            .last()
                                            .map(|s| s.ident.to_string());
                                    }
                                }
                            }
                        }
                        None
                    })
                    .collect::<HashSet<_>>();

                // Check each Config struct has Default
                for config in config_structs {
                    if !default_impls.contains(&config) {
                        errors.push(format!(
                            "{} - '{}' is a Resource Config but missing 'impl Default'",
                            file_path, config
                        ));
                    }
                }
            }
        }
    }

    errors
}

//
// ═══════════════════════════════════════════════════════════════════════════
// System Ordering Lint
// ═══════════════════════════════════════════════════════════════════════════
//

use syn::{FnArg, ImplItem, ItemImpl, Type};

struct SystemOrderingVisitor {
    errors: Vec<String>,
    current_file: String,
}

fn check_system_ordering_violations(target_dir: &str) -> Vec<String> {
    let mut visitor = SystemOrderingVisitor {
        errors: Vec::new(),
        current_file: String::new(),
    };

    if !Path::new(target_dir).exists() {
        return Vec::new();
    }

    for entry in WalkDir::new(target_dir).into_iter().filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.extension().is_some_and(|ext| ext == "rs")
            && path.file_name().is_some_and(|name| name == "plugin.rs")
        {
            visitor.current_file = path.display().to_string();
            let content = fs::read_to_string(path).unwrap();
            if let Ok(file) = syn::parse_file(&content) {
                visitor.visit_file(&file);
            }
        }
    }

    visitor.errors
}

impl<'ast> Visit<'ast> for SystemOrderingVisitor {
    fn visit_item_impl(&mut self, node: &'ast ItemImpl) {
        if let Type::Path(type_path) = &*node.self_ty {
            let type_name = type_path
                .path
                .segments
                .last()
                .map(|s| s.ident.to_string())
                .unwrap_or_default();

            if type_name.ends_with("Plugin") {
                for item in &node.items {
                    if let ImplItem::Fn(method) = item {
                        if method.sig.ident == "build" {
                            let body_str = quote::quote!(#method).to_string();

                            if body_str.contains("add_systems") && !body_str.contains("in_set") {
                                self.errors.push(format!(
                                    "{} - Plugin::build() calls add_systems without .in_set(). \
                                    Systems should use IssunSet for deterministic ordering.",
                                    self.current_file
                                ));
                            }
                        }
                    }
                }
            }
        }

        syn::visit::visit_item_impl(self, node);
    }
}

//
// ═══════════════════════════════════════════════════════════════════════════
// System Parameter Validation Lint
// ═══════════════════════════════════════════════════════════════════════════
//

struct SystemParamVisitor {
    errors: Vec<String>,
    current_file: String,
}

fn check_system_param_violations(target_dir: &str) -> Vec<String> {
    let mut visitor = SystemParamVisitor {
        errors: Vec::new(),
        current_file: String::new(),
    };

    if !Path::new(target_dir).exists() {
        return Vec::new();
    }

    for entry in WalkDir::new(target_dir).into_iter().filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.extension().is_some_and(|ext| ext == "rs")
            && path.file_name().is_some_and(|name| name == "systems.rs")
        {
            visitor.current_file = path.display().to_string();
            let content = fs::read_to_string(path).unwrap();
            if let Ok(file) = syn::parse_file(&content) {
                visitor.visit_file(&file);
            }
        }
    }

    visitor.errors
}

impl<'ast> Visit<'ast> for SystemParamVisitor {
    fn visit_item_fn(&mut self, node: &'ast ItemFn) {
        let mut has_world_ref = false;
        let mut has_mut_query = false;

        for input in &node.sig.inputs {
            if let FnArg::Typed(pat_type) = input {
                let type_str = quote::quote!(#pat_type.ty).to_string();

                if type_str.contains("& World") {
                    has_world_ref = true;
                }

                if type_str.contains("Query") && type_str.contains("& mut") {
                    has_mut_query = true;
                }
            }
        }

        if has_world_ref && has_mut_query {
            self.errors.push(format!(
                "{} - Function '{}' uses both &World and Query<&mut ...>. \
                This causes borrowing conflicts. Use Query results for validation instead.",
                self.current_file, node.sig.ident
            ));
        }

        syn::visit::visit_item_fn(self, node);
    }
}

//
// ═══════════════════════════════════════════════════════════════════════════
// Entity::from_bits Safety Lint (P0)
// ═══════════════════════════════════════════════════════════════════════════
//

struct EntityFromBitsSafetyVisitor {
    errors: Vec<String>,
    current_file: String,
    in_test_code: bool,
}

fn check_entity_from_bits_violations(target_dir: &str) -> Vec<String> {
    let mut visitor = EntityFromBitsSafetyVisitor {
        errors: Vec::new(),
        current_file: String::new(),
        in_test_code: false,
    };

    if !Path::new(target_dir).exists() {
        return Vec::new();
    }

    for entry in WalkDir::new(target_dir).into_iter().filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.extension().is_some_and(|ext| ext == "rs") {
            // Skip entity_safety.rs - that's where the safe wrappers are defined
            if path
                .file_name()
                .is_some_and(|name| name == "entity_safety.rs")
            {
                continue;
            }
            // Skip commands.rs - entity IDs are queued, not directly accessed
            // Safety checks happen during command execution with SafeEntityRef
            if path.file_name().is_some_and(|name| name == "commands.rs") {
                continue;
            }

            visitor.current_file = path.display().to_string();
            let content = fs::read_to_string(path).unwrap();
            if let Ok(file) = syn::parse_file(&content) {
                visitor.visit_file(&file);
            }
        }
    }

    visitor.errors
}

impl<'ast> Visit<'ast> for EntityFromBitsSafetyVisitor {
    fn visit_item_fn(&mut self, node: &'ast ItemFn) {
        // Check if this is a test function
        let was_in_test = self.in_test_code;
        let is_test = node
            .attrs
            .iter()
            .any(|attr| attr.path().is_ident("test") || attr.path().is_ident("cfg"));

        if is_test {
            self.in_test_code = true;
        }

        syn::visit::visit_item_fn(self, node);

        self.in_test_code = was_in_test;
    }

    fn visit_expr_call(&mut self, node: &'ast syn::ExprCall) {
        use quote::ToTokens;

        // Skip if we're in test code
        if !self.in_test_code {
            // Check for Entity::from_bits() calls
            // This is an associated function call like Entity::from_bits(12345)
            let func_str = node.func.to_token_stream().to_string();

            if func_str.contains("Entity") && func_str.contains("from_bits") {
                // ⚠️ P0 VIOLATION: Entity::from_bits() must be wrapped in SafeEntityRef
                // The only safe usage is: SafeEntityRef::new(Entity::from_bits(...), world)
                // or via entity_from_bits_safe() helper
                self.errors.push(format!(
                    "{} - Unsafe Entity::from_bits() call. Use entity_from_bits_safe() or SafeEntityRef::new() instead. \
                    ⚠️ CRITICAL P0: Entity::from_bits() creates entities that may be despawned, causing crashes!",
                    self.current_file
                ));
            }
        }

        syn::visit::visit_expr_call(self, node);
    }
}

//
// ═══════════════════════════════════════════════════════════════════════════
// Main Lint Tests
// ═══════════════════════════════════════════════════════════════════════════
//

#[test]
fn enforce_reflect_on_all_bevy_types() {
    let errors = check_reflect_violations("src/plugins");

    if errors.is_empty() && !Path::new("src/plugins").exists() {
        eprintln!("⚠️  Warning: src/plugins not found, skipping Reflect lint check");
        return;
    }

    assert!(
        errors.is_empty(),
        "\n\n❌ Reflect Lint Errors:\n\n{}\n\n\
        💡 Fix: Add #[derive(Reflect)] and #[reflect(Component/Resource/Message/Event)]\n",
        errors.join("\n")
    );
}

#[test]
fn enforce_query_safety() {
    let errors = check_query_safety_violations("src/plugins");

    if errors.is_empty() && !Path::new("src/plugins").exists() {
        eprintln!("⚠️  Warning: src/plugins not found, skipping Query Safety lint check");
        return;
    }

    // cSpell:ignore despawned
    assert!(
        errors.is_empty(),
        "\n\n❌ Query Safety Lint Errors:\n\n{}\n\n\
        💡 Fix: Use 'if let Ok(x) = query.get(entity)' instead of 'query.get(entity).unwrap()'\n\
        ⚠️  CRITICAL: .unwrap() on queries causes panics when entities are despawned!\n",
        errors.join("\n")
    );
}

#[test]
fn enforce_config_default() {
    let errors = check_config_default_violations("src/plugins");

    if errors.is_empty() && !Path::new("src/plugins").exists() {
        eprintln!("⚠️  Warning: src/plugins not found, skipping Config Default lint check");
        return;
    }

    assert!(
        errors.is_empty(),
        "\n\n❌ Config Default Lint Errors:\n\n{}\n\n\
        💡 Fix: Add 'impl Default for YourConfig {{ ... }}'\n",
        errors.join("\n")
    );
}

#[test]
fn enforce_system_ordering() {
    let errors = check_system_ordering_violations("src/plugins");

    if errors.is_empty() && !Path::new("src/plugins").exists() {
        eprintln!("⚠️  Warning: src/plugins not found, skipping System Ordering lint check");
        return;
    }

    assert!(
        errors.is_empty(),
        "\n\n❌ System Ordering Lint Errors:\n\n{}\n\n\
        💡 Fix: Use .in_set(IssunSet::Logic) or appropriate set for deterministic ordering\n\
        Example: app.add_systems(Update, my_system.in_set(IssunSet::Logic));\n",
        errors.join("\n")
    );
}

#[test]
fn enforce_system_params() {
    let errors = check_system_param_violations("src/plugins");

    if errors.is_empty() && !Path::new("src/plugins").exists() {
        eprintln!("⚠️  Warning: src/plugins not found, skipping System Params lint check");
        return;
    }

    assert!(
        errors.is_empty(),
        "\n\n❌ System Parameter Lint Errors:\n\n{}\n\n\
        💡 Fix: Remove &World parameter and use Query results for entity validation\n\
        Example: if let Ok(component) = query.get(entity) {{ /* safe */ }}\n",
        errors.join("\n")
    );
}

#[test]
fn enforce_entity_from_bits_safety() {
    let errors = check_entity_from_bits_violations("src/plugins");

    if errors.is_empty() && !Path::new("src/plugins").exists() {
        eprintln!(
            "⚠️  Warning: src/plugins not found, skipping Entity::from_bits Safety lint check"
        );
        return;
    }

    assert!(
        errors.is_empty(),
        "\n\n❌ Entity::from_bits Safety Lint Errors (P0):\n\n{}\n\n\
        💡 Fix: Use entity_from_bits_safe() or SafeEntityRef::new() wrapper\n\
        Example: let safe_entity = entity_from_bits_safe(bits, &world);\n\
        ⚠️  CRITICAL P0: Entity::from_bits() without safety checks causes crashes when entities are despawned!\n",
        errors.join("\n")
    );
}

#[cfg(test)]
mod linter_tests {
    use super::*;
    use std::fs;
    use std::io::Write;

    /// Test that the linter correctly detects missing #[derive(Reflect)]
    #[test]
    fn test_linter_detects_missing_derive_reflect() {
        let test_dir = "tests/lints_fixtures/missing_derive";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[derive(Component)]
pub struct BadComponent {{
    pub value: i32,
}}
"#
        )
        .unwrap();

        let errors = check_reflect_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: Should detect 2 errors
        assert_eq!(
            errors.len(),
            2,
            "Expected 2 errors, got {}: {:?}",
            errors.len(),
            errors
        );
        assert!(
            errors
                .iter()
                .any(|e| e.contains("BadComponent") && e.contains("missing #[derive(Reflect)]")),
            "Expected error about missing #[derive(Reflect)], got: {:?}",
            errors
        );
        assert!(
            errors
                .iter()
                .any(|e| e.contains("BadComponent") && e.contains("missing #[reflect(Component)]")),
            "Expected error about missing #[reflect(Component)], got: {:?}",
            errors
        );
    }

    /// Test that the linter correctly detects missing #[reflect(...)]
    #[test]
    fn test_linter_detects_missing_reflect_attribute() {
        let test_dir = "tests/lints_fixtures/missing_attribute";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[derive(Component, Reflect)]
pub struct BadComponent {{
    pub value: i32,
}}
"#
        )
        .unwrap();

        let errors = check_reflect_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: Only error for missing #[reflect(Component)]
        assert_eq!(
            errors.len(),
            1,
            "Expected 1 error, got {}: {:?}",
            errors.len(),
            errors
        );
        assert!(
            errors[0].contains("BadComponent")
                && errors[0].contains("missing #[reflect(Component)]"),
            "Expected error about missing #[reflect(Component)], got: {}",
            errors[0]
        );
    }

    /// Test that the linter accepts correct usage
    #[test]
    fn test_linter_accepts_correct_usage() {
        let test_dir = "tests/lints_fixtures/correct";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[derive(Component, Reflect)]
#[reflect(Component)]
pub struct GoodComponent {{
    pub value: i32,
}}

#[derive(Resource, Reflect)]
#[reflect(Resource)]
pub struct GoodResource {{
    pub count: u32,
}}

#[derive(Message, Clone, Reflect)]
#[reflect(Message)]
pub struct GoodMessage {{
    pub data: String,
}}
"#
        )
        .unwrap();

        let errors = check_reflect_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: No errors
        assert!(
            errors.is_empty(),
            "Expected no errors for correct usage, got: {:?}",
            errors
        );
    }

    /// Test that the linter detects violations for all types
    #[test]
    fn test_linter_detects_all_bevy_types() {
        let test_dir = "tests/lints_fixtures/all_types";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[derive(Component)]
pub struct BadComponent {{ pub v: i32 }}

#[derive(Resource)]
pub struct BadResource {{ pub v: i32 }}

#[derive(Message, Clone)]
pub struct BadMessage {{ pub v: i32 }}

#[derive(Event)]
pub struct BadEvent {{ pub v: i32 }}
"#
        )
        .unwrap();

        let errors = check_reflect_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: 6 errors total
        // - Component: 2 errors (#[derive(Reflect)] + #[reflect(Component)])
        // - Resource: 2 errors (#[derive(Reflect)] + #[reflect(Resource)])
        // - Message: 1 error (#[derive(Reflect)] only, no #[reflect(Message)])
        // - Event: 1 error (#[derive(Reflect)] only, no #[reflect(Event)])
        assert_eq!(
            errors.len(),
            6,
            "Expected 6 errors, got {}: {:?}",
            errors.len(),
            errors
        );

        // Component
        assert!(errors
            .iter()
            .any(|e| e.contains("BadComponent") && e.contains("missing #[derive(Reflect)]")));
        assert!(errors
            .iter()
            .any(|e| e.contains("BadComponent") && e.contains("missing #[reflect(Component)]")));

        // Resource
        assert!(errors
            .iter()
            .any(|e| e.contains("BadResource") && e.contains("missing #[derive(Reflect)]")));
        assert!(errors
            .iter()
            .any(|e| e.contains("BadResource") && e.contains("missing #[reflect(Resource)]")));

        // Message (⚠️ Only #[derive(Reflect)] required, no #[reflect(Message)])
        assert!(errors
            .iter()
            .any(|e| e.contains("BadMessage") && e.contains("missing #[derive(Reflect)]")));
        // ❌ No longer checking for #[reflect(Message)] - it doesn't exist in Bevy 0.17

        // Event (⚠️ Only #[derive(Reflect)] required, no #[reflect(Event)])
        assert!(errors
            .iter()
            .any(|e| e.contains("BadEvent") && e.contains("missing #[derive(Reflect)]")));
        // ❌ No longer checking for #[reflect(Event)] - it doesn't exist in Bevy 0.17
    }

    /// Test Query Safety: Detects .unwrap() on query.get()
    #[test]
    fn test_query_safety_detects_unwrap() {
        let test_dir = "tests/lints_fixtures/query_unsafe";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

pub fn bad_system(query: Query<&Health>) {{
    let health = query.get(entity).unwrap();  // ❌ Should error
}}
"#
        )
        .unwrap();

        let errors = check_query_safety_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: Should detect 1 error
        assert!(!errors.is_empty(), "Expected errors, got none");
        assert!(
            errors[0].contains("Unsafe .unwrap() on query.get()"),
            "Expected error about unsafe unwrap, got: {}",
            errors[0]
        );
    }

    /// Test Query Safety: Accepts if-let pattern
    #[test]
    fn test_query_safety_accepts_if_let() {
        let test_dir = "tests/lints_fixtures/query_safe";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

pub fn good_system(query: Query<&Health>) {{
    if let Ok(health) = query.get(entity) {{
        // ✅ Safe pattern
    }}
}}
"#
        )
        .unwrap();

        let errors = check_query_safety_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: No errors
        assert!(
            errors.is_empty(),
            "Expected no errors for safe pattern, got: {:?}",
            errors
        );
    }

    /// Test Query Safety: Allows .unwrap() in test code
    #[test]
    fn test_query_safety_allows_test_unwrap() {
        let test_dir = "tests/lints_fixtures/query_test";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[test]
fn test_something() {{
    let health = query.get(entity).unwrap();  // ✅ OK in tests
}}
"#
        )
        .unwrap();

        let errors = check_query_safety_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: No errors (test code exempted)
        assert!(
            errors.is_empty(),
            "Expected no errors in test code, got: {:?}",
            errors
        );
    }

    /// Test Config Default: Detects missing Default impl
    #[test]
    fn test_config_default_detects_missing() {
        let test_dir = "tests/lints_fixtures/config_no_default";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[derive(Resource, Reflect)]
#[reflect(Resource)]
pub struct MyConfig {{
    pub value: u32,
}}

// Missing: impl Default for MyConfig
"#
        )
        .unwrap();

        let errors = check_config_default_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: Should detect 1 error
        assert_eq!(
            errors.len(),
            1,
            "Expected 1 error, got {}: {:?}",
            errors.len(),
            errors
        );
        assert!(
            errors[0].contains("MyConfig") && errors[0].contains("missing 'impl Default'"),
            "Expected error about missing Default, got: {}",
            errors[0]
        );
    }

    /// Test Config Default: Accepts Config with Default
    #[test]
    fn test_config_default_accepts_with_impl() {
        let test_dir = "tests/lints_fixtures/config_with_default";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[derive(Resource, Reflect)]
#[reflect(Resource)]
pub struct MyConfig {{
    pub value: u32,
}}

impl Default for MyConfig {{
    fn default() -> Self {{
        Self {{ value: 10 }}
    }}
}}
"#
        )
        .unwrap();

        let errors = check_config_default_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: No errors
        assert!(
            errors.is_empty(),
            "Expected no errors for Config with Default, got: {:?}",
            errors
        );
    }

    /// Test Config Default: Ignores non-Config resources
    #[test]
    fn test_config_default_ignores_non_config() {
        let test_dir = "tests/lints_fixtures/non_config_resource";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[derive(Resource, Reflect)]
#[reflect(Resource)]
pub struct MyResource {{
    pub data: String,
}}

// No Default required (not a Config)
"#
        )
        .unwrap();

        let errors = check_config_default_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: No errors (not a Config)
        assert!(
            errors.is_empty(),
            "Expected no errors for non-Config resource, got: {:?}",
            errors
        );
    }

    #[test]
    fn test_system_ordering_detects_missing_in_set() {
        let test_dir = "tests/lints_fixtures/system_ordering_bad";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/plugin.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

pub struct TestPlugin;

impl Plugin for TestPlugin {{
    fn build(&self, app: &mut App) {{
        app.add_systems(Update, my_system);  // Missing .in_set()
    }}
}}

fn my_system() {{}}
"#
        )
        .unwrap();

        let errors = check_system_ordering_violations(test_dir);

        fs::remove_dir_all(test_dir).unwrap();

        assert!(
            !errors.is_empty(),
            "Expected error for add_systems without .in_set()"
        );
        assert!(
            errors[0].contains("add_systems without .in_set()"),
            "Expected specific error message, got: {}",
            errors[0]
        );
    }

    #[test]
    fn test_system_ordering_accepts_with_in_set() {
        let test_dir = "tests/lints_fixtures/system_ordering_good";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/plugin.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

pub struct TestPlugin;

impl Plugin for TestPlugin {{
    fn build(&self, app: &mut App) {{
        app.add_systems(Update, my_system.in_set(IssunSet::Logic));
    }}
}}

fn my_system() {{}}
"#
        )
        .unwrap();

        let errors = check_system_ordering_violations(test_dir);

        fs::remove_dir_all(test_dir).unwrap();

        assert!(
            errors.is_empty(),
            "Expected no errors for add_systems with .in_set(), got: {:?}",
            errors
        );
    }

    #[test]
    fn test_system_params_detects_world_with_mut_query() {
        let test_dir = "tests/lints_fixtures/system_params_bad";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/systems.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

pub fn bad_system(
    mut query: Query<&mut Health>,
    world: &World,
) {{
    // Causes borrowing conflict
}}
"#
        )
        .unwrap();

        let errors = check_system_param_violations(test_dir);

        fs::remove_dir_all(test_dir).unwrap();

        assert!(
            !errors.is_empty(),
            "Expected error for &World with Query<&mut ...>"
        );
        assert!(
            errors[0].contains("borrowing conflicts"),
            "Expected specific error message, got: {}",
            errors[0]
        );
    }

    #[test]
    fn test_system_params_accepts_without_conflicts() {
        let test_dir = "tests/lints_fixtures/system_params_good";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/systems.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

pub fn good_system(
    mut query: Query<&mut Health>,
) {{
    // No conflict - uses Query only
}}
"#
        )
        .unwrap();

        let errors = check_system_param_violations(test_dir);

        fs::remove_dir_all(test_dir).unwrap();

        assert!(
            errors.is_empty(),
            "Expected no errors for safe system params, got: {:?}",
            errors
        );
    }

    /// Test Entity::from_bits Safety: Detects unsafe usage
    #[test]
    fn test_entity_from_bits_detects_unsafe_usage() {
        let test_dir = "tests/lints_fixtures/entity_from_bits_unsafe";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

pub fn bad_system(world: &World) {{
    let entity = Entity::from_bits(12345);  // ❌ Unsafe!
    // This entity might be despawned, causing crashes
}}
"#
        )
        .unwrap();

        let errors = check_entity_from_bits_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: Should detect 1 error
        assert!(!errors.is_empty(), "Expected errors, got none");
        assert!(
            errors[0].contains("Unsafe Entity::from_bits()"),
            "Expected error about unsafe Entity::from_bits(), got: {}",
            errors[0]
        );
    }

    /// Test Entity::from_bits Safety: Accepts safe wrapper
    #[test]
    fn test_entity_from_bits_accepts_safe_wrapper() {
        let test_dir = "tests/lints_fixtures/entity_from_bits_safe";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

pub fn good_system(world: &World) {{
    // ✅ Safe: uses helper function
    let safe_entity = entity_from_bits_safe(12345, world);
    if safe_entity.exists() {{
        // safe to use
    }}
}}
"#
        )
        .unwrap();

        let errors = check_entity_from_bits_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: No errors (using safe wrapper)
        assert!(
            errors.is_empty(),
            "Expected no errors for safe wrapper usage, got: {:?}",
            errors
        );
    }

    /// Test Entity::from_bits Safety: Allows in test code
    #[test]
    fn test_entity_from_bits_allows_in_tests() {
        let test_dir = "tests/lints_fixtures/entity_from_bits_test";
        fs::create_dir_all(test_dir).unwrap();

        let test_file = format!("{}/test.rs", test_dir);
        let mut file = fs::File::create(&test_file).unwrap();
        writeln!(
            file,
            r#"
use bevy::prelude::*;

#[test]
fn test_something() {{
    let entity = Entity::from_bits(12345);  // ✅ OK in tests
}}
"#
        )
        .unwrap();

        let errors = check_entity_from_bits_violations(test_dir);

        // Cleanup
        fs::remove_dir_all(test_dir).unwrap();

        // Assert: No errors (test code exempted)
        assert!(
            errors.is_empty(),
            "Expected no errors in test code, got: {:?}",
            errors
        );
    }
}