Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[infra] Hide TODOs from problems view in VSCode #837

Merged
merged 1 commit into from
Nov 29, 2023
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
2 changes: 2 additions & 0 deletions pkgs/ffigen/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
include: package:lints/recommended.yaml

analyzer:
errors:
todo: ignore
exclude:
- 'test/**_expected*'
# Goldens cannot be generated outside MacOS causing analysis errors.
Expand Down
2 changes: 2 additions & 0 deletions pkgs/jni/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
include: package:flutter_lints/flutter.yaml

analyzer:
errors:
todo: ignore
exclude: [build/**, third_party/**]
language:
strict-raw-types: true
Expand Down
2 changes: 2 additions & 0 deletions pkgs/jnigen/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
include: package:lints/recommended.yaml

analyzer:
errors:
todo: ignore
exclude: [build/**, example/**]
language:
strict-raw-types: true
Expand Down
5 changes: 2 additions & 3 deletions pkgs/native_assets_builder/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
include: package:dart_flutter_team_lints/analysis_options.yaml

analyzer:
errors:
todo: ignore
language:
strict-raw-types: true
exclude:
# TODO(https://github.com/dart-lang/ecosystem/issues/150): Remove this.
- test/data/

linter:
rules:
Expand Down
2 changes: 2 additions & 0 deletions pkgs/native_assets_cli/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
include: package:dart_flutter_team_lints/analysis_options.yaml

analyzer:
errors:
todo: ignore
language:
strict-raw-types: true

Expand Down
2 changes: 2 additions & 0 deletions pkgs/native_toolchain_c/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
include: package:dart_flutter_team_lints/analysis_options.yaml

analyzer:
errors:
todo: ignore
language:
strict-raw-types: true

Expand Down
Loading