mirror of
https://github.com/acamarata/acamarata_lints.git
synced 2026-07-01 03:04:24 +00:00
11 lines
323 B
Dart
11 lines
323 B
Dart
// ignore_for_file: avoid_print
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
test('acamarata_lints package is importable', () {
|
|
// This package exports no Dart symbols.
|
|
// Lint rules are applied via analysis_options.yaml.
|
|
// This test exists to satisfy `dart test` in CI.
|
|
expect(true, isTrue);
|
|
});
|
|
}
|