Skip to content

Commit 010e57e

Browse files
committed
docs: use prettier for markdown files
1 parent 9ff9d5a commit 010e57e

5 files changed

Lines changed: 152 additions & 119 deletions

File tree

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ trim_trailing_whitespace = true
1010
indent_style = space
1111
indent_size = 2
1212
max_line_length = 88
13+
14+
[*.md]
15+
indent_style = space
16+
indent_size = 2
17+
max_line_length = 99

.prettierrc.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,15 @@
1212
"singleQuote": true,
1313
"tabWidth": 2,
1414
"trailingComma": "all",
15-
"useTabs": false
15+
"useTabs": false,
16+
"overrides": [
17+
{
18+
"files": "*.md",
19+
"options": {
20+
"printWidth": 99,
21+
"proseWrap": "always",
22+
"singleQuote": false
23+
}
24+
}
25+
]
1626
}

CHANGELOG.md

Lines changed: 29 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,63 +1,70 @@
1+
# 3.4.3
2+
3+
- Minor README.md updates.
4+
- Dependency Housekeeping.
5+
16
# 3.4.2
27

3-
* Dependency Housekeeping.
8+
- Dependency Housekeeping.
49

510
# 3.4.1
611

7-
* Improve logging when marking dev drive as trusted.
12+
- Improve logging when marking dev drive as trusted.
813

914
# 3.4.0
1015

11-
* Add ability to mark dev drive as trusted.
16+
- Add ability to mark dev drive as trusted.
1217

1318
# 3.3.0
1419

15-
* Add `windows-2025` runner support.
16-
* Change default VHDX size to 2GB.
20+
- Add `windows-2025` runner support.
21+
- Change default VHDX size to 2GB.
1722

1823
# 3.2.0
1924

20-
* Add `env-mapping` option to support improved environment variables configuration.
25+
- Add `env-mapping` option to support improved environment variables configuration.
2126

2227
# 3.1.0
2328

24-
* Expose `native-dev-drive` as an option to turn off automatic native Dev Drive usage.
25-
* Documentation improvements.
26-
* Align package.json version.
29+
- Expose `native-dev-drive` as an option to turn off automatic native Dev Drive usage.
30+
- Documentation improvements.
31+
- Align package.json version.
2732

2833
# 3.0.0
2934

30-
* Allow mounting dev drive in specified mount path (ReFS, NTFS only).
31-
* Workspace copying is no longer restricted by the Dev Drive location.
32-
* Paths in output env vars are no longer escaped `\\`.
33-
* Cleaner error messages.
35+
- Allow mounting dev drive in specified mount path (ReFS, NTFS only).
36+
- Workspace copying is no longer restricted by the Dev Drive location.
37+
- Paths in output env vars are no longer escaped `\\`.
38+
- Cleaner error messages.
3439

3540
# 2.2.0
3641

37-
* Improved error handling feedback.
38-
* Additional CI tests.
39-
* More Badges.
42+
- Improved error handling feedback.
43+
- Additional CI tests.
44+
- More Badges.
4045

4146
# 2.1.2
4247

43-
* Documentation improvements.
48+
- Documentation improvements.
4449

4550
# 2.1.1
4651

47-
* Added error check when Dev Drive is located inside `${{ github.workspace }}` when `workspace-copy` is set.
52+
- Added error check when Dev Drive is located inside `${{ github.workspace }}` when
53+
`workspace-copy` is set.
4854

4955
# 2.1.0
5056

51-
* Added input option `mount-if-exists` to allow mounting pre-existing VHDX drives (e.g. from `actions/cache`).
57+
- Added input option `mount-if-exists` to allow mounting pre-existing VHDX drives (e.g. from
58+
`actions/cache`).
5259

5360
# 2.0.0
5461

55-
* The default `drive-type` is now `Dynamic` instead of `Fixed`.
62+
- The default `drive-type` is now `Dynamic` instead of `Fixed`.
5663

5764
# 1.1.0
5865

59-
* Support `drive-type` input allowing to set the drive allocation to `Fixed` or `Dynamic`.
66+
- Support `drive-type` input allowing to set the drive allocation to `Fixed` or `Dynamic`.
6067

6168
# 1.0.0
6269

63-
* Initial Release.
70+
- Initial Release.

0 commit comments

Comments
 (0)