Skip to content

Commit 09996e0

Browse files
committed
fix md issues
1 parent 0537202 commit 09996e0

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

skills/dart-flutter-sdk-upgrade/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ version bumps, no test changes.
2222

2323
Apply these standards to ALL SDK upgrade work:
2424

25-
- **Flutter and Dart versions differ** — always look up the Dart version bundled with the target Flutter release from https://docs.flutter.dev/install/archive
25+
- **Flutter and Dart versions differ** — always look up the Dart version bundled with the target Flutter release from <https://docs.flutter.dev/install/archive>
2626
- **CI uses `^MAJOR.MINOR.x`** — wildcard patch so CI always gets the latest patch
2727
- **pubspec pins exact patch** — use `^MAJOR.MINOR.PATCH` with the specific patch version
2828
- **Pure Dart packages** — use the Dart version directly, no Flutter mapping needed
@@ -38,7 +38,7 @@ for the target Flutter release before editing any files.
3838

3939
**How to find the Dart version:**
4040

41-
1. Open https://docs.flutter.dev/install/archive
41+
1. Open <https://docs.flutter.dev/install/archive>
4242
2. Find the target Flutter stable release
4343
3. Note the Dart version listed alongside it
4444

@@ -133,7 +133,7 @@ git diff HEAD --name-only
133133

134134
Suggested commit/PR message:
135135

136-
```
136+
```text
137137
chore: bump Flutter to 3.41.0 / Dart to 3.11.0
138138
139139
- Update flutter_version in .github/workflows/ to ^3.41.x (CI resolves latest patch)

skills/very-good-analysis-upgrade/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ git add pubspec.yaml pubspec.lock # always include these
123123

124124
Commit with a clear message following the project's conventions. A good default:
125125
126-
```
126+
```text
127127
chore: upgrade very_good_analysis to x.y.z
128128
129129
Bump very_good_analysis from <old> to <new> and resolve

skills/very-good-analysis-upgrade/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Extended examples and common lint rule fixes for the very_good_analysis upgrade
1313
| `unnecessary_late` | Remove `late` from immediately-initialized variables |
1414
| `avoid_dynamic_calls` | Cast the receiver to a specific type |
1515
| `require_trailing_commas` | Add trailing comma in argument/parameter lists |
16-
| `unnecessary_null_checks` | Remove redundant `!` operators |
16+
| `unnecessary_null_checks` | Remove redundant `!` operators |

0 commit comments

Comments
 (0)