@@ -7,12 +7,12 @@ analyzer:
77 - " **/build/**"
88 - " **/*.g.dart"
99 - " **/*.freezed.dart"
10- - " **/test/**" # Exclude all test directories
11- - " **/node_modules/**" # Exclude node_modules
12- - " packages/**/dist/**" # Exclude flutterjs_material dist
13- - " examples/**/build/**" # Exclude example build folders
14- - " **/*.js" # Exclude all JavaScript files
15- - " **/*.fjs" # Exclude ES modules
10+ - " **/test/**"
11+ - " **/node_modules/**"
12+ - " packages/**/dist/**"
13+ - " examples/**/build/**"
14+ - " **/*.js"
15+ - " **/*.fjs"
1616
1717 # Performance optimizations
1818 language :
@@ -22,9 +22,29 @@ analyzer:
2222
2323 # Reduce analysis scope
2424 errors :
25- # Downgrade some checks to improve speed
2625 todo : ignore
2726 deprecated_member_use : ignore
27+ use_super_parameters : ignore
28+ prefer_final_fields : ignore
29+ avoid_print : ignore
30+ unnecessary_brace_in_string_interps : ignore
31+ use_key_in_widget_constructors : ignore
32+ file_names : ignore
33+ non_constant_identifier_names : ignore
34+ unintended_html_in_doc_comment : ignore
35+ unused_element : ignore
36+ unnecessary_import : ignore
37+ implementation_imports : ignore
38+ unnecessary_library_name : ignore
39+ dangling_library_doc_comments : ignore
40+ must_be_immutable : ignore
41+ unused_catch_stack : ignore
42+ dead_code : ignore
43+ dead_null_aware_expression : ignore
44+ unrelated_type_equality_checks : ignore
45+ collection_methods_unrelated_type : ignore
46+ depend_on_referenced_packages : ignore
47+ annotate_overrides : ignore
2848
2949 # Enable strong mode for better performance
3050 strong-mode :
@@ -33,5 +53,4 @@ analyzer:
3353
3454linter :
3555 rules :
36- # Disable heavy lint rules if needed
37- # - avoid_print: false
56+ - avoid_print : false
0 commit comments