Skip to content

Commit

Permalink
flutter format command replaced to dar format
Browse files Browse the repository at this point in the history
  • Loading branch information
Suat Keskin committed Aug 24, 2023
1 parent f9e9885 commit 489bd4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/app_facing_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: flutter pub get
working-directory: ./flutter_custom_tabs
- name: Check for any formatting issues in the code
run: flutter format --set-exit-if-changed .
run: dart format --set-exit-if-changed .
working-directory: ./flutter_custom_tabs
- name: Statically analyze the Dart code for any errors
run: flutter analyze .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/platform_interface_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: flutter pub get
working-directory: ./flutter_custom_tabs_platform_interface
- name: Check for any formatting issues in the code
run: flutter format --set-exit-if-changed .
run: dart format --set-exit-if-changed .
working-directory: ./flutter_custom_tabs_platform_interface
- name: Statically analyze the Dart code for any errors
run: flutter analyze .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web_implementation_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: flutter pub get
working-directory: ./flutter_custom_tabs_web
- name: Check for any formatting issues in the code
run: flutter format --set-exit-if-changed .
run: dart format --set-exit-if-changed .
working-directory: ./flutter_custom_tabs_web
- name: Statically analyze the Dart code for any errors
run: flutter analyze .
Expand Down

0 comments on commit 489bd4d

Please sign in to comment.