Skip to content

Commit ecd774f

Browse files
committed
latest mono_repo, ignore hints for now, use pubspec feature
Closes #1196
1 parent 10dd2ee commit ecd774f

File tree

7 files changed

+162
-136
lines changed

7 files changed

+162
-136
lines changed

.github/workflows/dart.yml

Lines changed: 149 additions & 123 deletions
Large diffs are not rendered by default.

_test_yaml/mono_pkg.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# See https://github.com/google/mono_repo.dart for details on this file
22
sdk:
3-
- 2.17.0
3+
- pubspec
44
- dev
55

66
stages:
77
- analyzer_and_format:
88
- group:
99
- format
10-
- analyze: --fatal-infos .
10+
- analyze: # --fatal-infos .
1111
- unit_test:
1212
- test
1313
- ensure_build:

checked_yaml/mono_pkg.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# See https://github.com/google/mono_repo.dart for details on this file
22
sdk:
3-
- 2.17.0
3+
- pubspec
44
- dev
55

66
stages:
77
- analyzer_and_format:
88
- group:
99
- format
10-
- analyze: --fatal-infos .
10+
- analyze: # --fatal-infos .
1111

1212
- unit_test:
1313
- test

example/mono_pkg.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# See https://github.com/google/mono_repo.dart for details on this file
22
sdk:
3-
- 2.17.0
3+
- pubspec
44
- dev
55

66
stages:
77
- analyzer_and_format:
88
- group:
99
- format
10-
- analyze: --fatal-infos .
10+
- analyze: # --fatal-infos .
1111
- unit_test:
1212
- test
1313
- ensure_build:

json_annotation/mono_pkg.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# See https://github.com/google/mono_repo.dart for details on this file
22
sdk:
3-
- 2.17.0
3+
- pubspec
44
- dev
55

66
stages:
77
- analyzer_and_format:
88
- group:
99
- format
10-
- analyze: --fatal-infos .
10+
- analyze: # --fatal-infos .

json_serializable/mono_pkg.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# See https://github.com/google/mono_repo.dart for details on this file
22
sdk:
3-
- 2.17.0
3+
- pubspec
44
- dev
55

66
stages:
77
- analyzer_and_format:
88
- group:
99
- format
10-
- analyze: --fatal-infos .
10+
- analyze: # --fatal-infos .
1111
- unit_test:
1212
- test:
1313
- test: -p chrome

tool/ci.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Created with package:mono_repo v6.3.0
2+
# Created with package:mono_repo v6.4.0
33

44
# Support built in commands on windows out of the box.
55
# When it is a flutter repo (check the pubspec.yaml for "sdk: flutter")
@@ -68,8 +68,8 @@ for PKG in ${PKGS}; do
6868
echo -e "\033[1mPKG: ${PKG}; TASK: ${TASK}\033[22m"
6969
case ${TASK} in
7070
analyze)
71-
echo 'dart analyze --fatal-infos .'
72-
dart analyze --fatal-infos . || EXIT_CODE=$?
71+
echo 'dart analyze'
72+
dart analyze || EXIT_CODE=$?
7373
;;
7474
format)
7575
echo 'dart format --output=none --set-exit-if-changed .'

0 commit comments

Comments
 (0)