-
-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into release-please-updt
- Loading branch information
Showing
505 changed files
with
113,885 additions
and
17,881 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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: flutter-analyze-commenter example | ||
|
||
on: pull_request # Only supports run by pull request | ||
|
||
jobs: | ||
flutter-analyze: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: write # Write permission is required to add comments on a PR | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: subosito/flutter-action@v2 | ||
|
||
- run: flutter pub get | ||
working-directory: ./packages/smooth_app | ||
|
||
# Run flutter analyze with --write option | ||
- run: flutter analyze --write=flutter_analyze.log | ||
working-directory: ./packages/smooth_app | ||
|
||
# (Optional)Run custom lint with --format=json option | ||
- if: ${{ !cancelled() }} | ||
run: dart run custom_lint --format=json > custom_lint.log | ||
working-directory: ./packages/smooth_app | ||
|
||
# Use flutter-analyze-commenter | ||
- if: ${{ !cancelled() }} # Required to run this step even if failure | ||
uses: yorifuji/flutter-analyze-commenter@v1 | ||
with: | ||
analyze-log: flutter_analyze.log # file path for analyze log | ||
custom-lint-log: custom_lint.log # file path for custom lint log (optional) | ||
verbose: false # verbose output (optional) |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"cSpell.words": [ | ||
"artboard", | ||
"cortado", | ||
"ecoscore", | ||
"entrypoints", | ||
"fdroid", | ||
"fimber", | ||
"folksonomy", | ||
"hideable", | ||
"lerp", | ||
"macchiato", | ||
"nutri", | ||
"nutriscore", | ||
"openbeautyfacts", | ||
"openfoodfacts", | ||
"openpetfoodfacts", | ||
"openproductsfacts", | ||
"opff", | ||
"packagings", | ||
"reorderable", | ||
"ristreto", | ||
"robotoff", | ||
"rrect", | ||
"snackbar", | ||
"sqflite", | ||
"swipeable", | ||
"tabbar", | ||
"tadam", | ||
"teolemon", | ||
"textfield", | ||
"topbar", | ||
"unfocus", | ||
"webview" | ||
] | ||
} |
Oops, something went wrong.