Skip to content

Commit

Permalink
fix: analysis_options.yaml
Browse files Browse the repository at this point in the history
```
Analyzing simplestreams.dart...        0.3s

warning • analysis_options.yaml:9:5 • The option 'implicit-casts' is no longer supported. Try using the new 'strict-casts' option. •
          analysis_option_deprecated
warning • analysis_options.yaml:10:5 • The option 'implicit-dynamic' is no longer supported. Try using the new 'strict-raw-types' option. •
          analysis_option_deprecated

2 issues found.
```
  • Loading branch information
jpnurmi committed May 11, 2023
1 parent 45b09e1 commit 9a55c5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ analyzer:
- "**/*.g.dart"
- "**/*.mocks.dart"

strong-mode:
implicit-casts: false
implicit-dynamic: false
language:
strict-casts: true
strict-raw-types: true

linter:
rules:
Expand Down

0 comments on commit 9a55c5f

Please sign in to comment.