dart-code-checker / dart-code-metrics

Software analytics tool that helps developers analyse and improve software quality.
https://dcm.dev
Other
860 stars 265 forks source link

[BUG] check-unused-code reports files supposedly excluded from the analysis #1240

Open tomwyr opened 1 year ago

tomwyr commented 1 year ago

Environment and configuration

DCM version: 5.7.4 Dart SDK version: 3.0.1

What did you do?

flutter pub run dart_code_metrics:metrics check-unused-code --exclude={/**.g.dart,/**.freezed.dart,/**injectable.dart,/localization/**.dart} lib

What did you expect to happen?

Exclude to make the script ignore files matched by the patterns I specified.

What actually happened?

Script reported warnings about files that were supposed to be ignored.

✔ Analysis is completed. Preparing the results: 5.1s

lib/localization/intl/messages_en.dart: ⚠ unused type alias MessageIfAbsent at /Users/x/y/lib/localization/intl/messages_en.dart:18:1

lib/src/di/injectable.dart: ⚠ unused function configureInjection at /Users/x/y/lib/src/di/injectable.dart:6:1

lib/src/domain/valuefailure.freezed.dart: ⚠ unused function $identity at /Users/x/y/lib/src/domain/value_failure.freezed.dart:12:1

lib/src/infrastructure/merge/handle_link/handle_link_web.dart: ⚠ unused function handleLink at /Users/x/y/lib/src/infrastructure/merge/handle_link/handle_link_web.dart:8:1

✖ total unused code (classes, functions, variables, extensions, enums, mixins and type aliases) - 4

Participation

Additional comments

No response