Skip to content

Commit 30e3298

Browse files
committed
Added enhanced analyzer exclusions to wakelock_plus_platform_interface.
1 parent 7b8dd6b commit 30e3298

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

wakelock_plus_platform_interface/analysis_options.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ include: package:flutter_lints/flutter.yaml
22

33
analyzer:
44
exclude:
5-
- lib/**.g.dart
6-
- test/**.g.dart
5+
# Generated files shouldn't really be analyzed. Remove if it becomes a problem.
6+
- "**/*.g.dart"
7+
- ".git/**" # Exclude private git directory
8+
- "build/**" # Exclude generated files in the build directory
9+
- ".dart_tool/**" # Exclude Dart tool-generated files
710

811
linter:
912
rules:

0 commit comments

Comments
 (0)