From 44ef05dffc30590098e485d594eb7a7aaf71b47c Mon Sep 17 00:00:00 2001 From: Shinya Kumagai Date: Mon, 11 Sep 2023 22:52:30 +0900 Subject: [PATCH] Add missing analysis_options.yaml to web example --- .../example/analysis_options.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 flutter_custom_tabs_web/example/analysis_options.yaml diff --git a/flutter_custom_tabs_web/example/analysis_options.yaml b/flutter_custom_tabs_web/example/analysis_options.yaml new file mode 100644 index 0000000..42758d2 --- /dev/null +++ b/flutter_custom_tabs_web/example/analysis_options.yaml @@ -0,0 +1,12 @@ +include: package:flutter_lints/flutter.yaml + +analyzer: + exclude: + # Ignore generated files + - '**/*.g.dart' + - '**/*.mocks.dart' # Mockito @GenerateMocks + +linter: + rules: + depend_on_referenced_packages: false + avoid_web_libraries_in_flutter: false \ No newline at end of file