-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Format code, update examples, remove tuple (#707)
* Fix deprecations of `withNullability` * Small fix Add back _displayString * Update versions * Update retrofit version in retrofit_generator * Add topics * Format code, update examples, remove tuple * Add question mark * Update flutter_example
- Loading branch information
Showing
81 changed files
with
630 additions
and
2,311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
include: package:lints/recommended.yaml | ||
analyzer: | ||
exclude: | ||
- lib/**/*.reflectable.dart | ||
- lib/**/*.g.dart | ||
- '**/*.g.dart' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,26 @@ | ||
name: retrofit_example | ||
description: Retrofit generator | ||
version: 1.0.0 | ||
|
||
description: retrofit_example | ||
version: 1.0.0+1 | ||
environment: | ||
sdk: '>=2.18.0 <3.0.0' | ||
sdk: '>=3.3.0 <4.0.0' | ||
|
||
dependencies: | ||
dio: ^5.7.0 | ||
http_parser: ^4.0.2 | ||
json_annotation: ^4.9.0 | ||
logger: ^2.4.0 | ||
retrofit: | ||
json_annotation: | ||
logger: ^1.2.2 | ||
dio: ^5.0.1 | ||
|
||
dev_dependencies: | ||
test: ^1.23.1 | ||
retrofit_generator: | ||
build_runner: ^2.3.3 | ||
json_serializable: ^6.6.1 | ||
build_runner: ^2.4.0 | ||
json_serializable: ^6.8.0 | ||
lints: ^4.0.0 | ||
mock_web_server: ^5.0.0-nullsafety.1 | ||
lints: ^2.0.1 | ||
retrofit_generator: | ||
test: ^1.25.0 | ||
|
||
dependency_overrides: | ||
retrofit: | ||
path: ../retrofit | ||
retrofit_generator: | ||
path: ../generator | ||
# source_gen: '>=1.3.0 <1.4.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
include: package:lints/recommended.yaml | ||
analyzer: | ||
# strong-mode: | ||
# implicit-casts: false | ||
# implicit-dynamic: false | ||
exclude: | ||
- lib/**/*.reflectable.dart | ||
- lib/**/*.g.dart | ||
- '**/*.g.dart' | ||
- '**/*.reflectable.dart' |
Oops, something went wrong.