Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions packages/animations/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
# default of enabling unawaited_futures. Please do NOT add more changes
# here without consulting with #hackers-ecosystem on Discord.

analyzer:
exclude:
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
include: ../../analysis_options.yaml

linter:
Expand Down
7 changes: 7 additions & 0 deletions packages/cupertino_ui/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ analyzer:
# TODO(justinmc): Remove the following exclusion when cross-imports are
# fixed. See https://github.com/flutter/flutter/issues/177028.
- "temporarily_disabled_tests/**"
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
9 changes: 9 additions & 0 deletions packages/cupertino_ui/example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
analyzer:
exclude:
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
include: package:flutter_lints/flutter.yaml

linter:
Expand Down
9 changes: 9 additions & 0 deletions packages/flutter_lints/example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@

# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
analyzer:
exclude:
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
include: package:flutter_lints/flutter.yaml

linter:
Expand Down
7 changes: 7 additions & 0 deletions packages/go_router/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ analyzer:
exclude:
# This directory deliberately has errors, to test `fix`.
- "test_fixes/**"
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
9 changes: 9 additions & 0 deletions packages/go_router_builder/example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,14 @@
# output. Since we want the output to default to what the default formatter
# would use, rather than the custom line length used in this repository, use
# 80 for this example so it matches.
analyzer:
exclude:
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
formatter:
page_width: 80
7 changes: 7 additions & 0 deletions packages/material_ui/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,10 @@ analyzer:
# TODO(justinmc): Remove the following exclusion when cross-imports are
# fixed. See https://github.com/flutter/flutter/issues/177028.
- "temporarily_disabled_tests/**"
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
9 changes: 9 additions & 0 deletions packages/material_ui/example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
analyzer:
exclude:
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
include: package:flutter_lints/flutter.yaml

linter:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
analyzer:
exclude:
- build/**
- android/**
- ios/**
- web/**
- windows/**
- macos/**
- linux/**
include: ../../../../analysis_options.yaml

linter:
Expand Down
Loading