Skip to content

Commit be97d55

Browse files
committed
run pretter on *.json, *.yml, and *.md
1 parent 096c056 commit be97d55

File tree

8 files changed

+18
-20
lines changed

8 files changed

+18
-20
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Describe the bug**
@@ -19,6 +18,7 @@ _Filing bugs without reproduction steps will be closed as invalid._
1918
A clear and concise description of what you expected to happen.
2019

2120
**Environment (please complete the following information):**
22-
- Version of this library (hint: only the last release is supported)
23-
- OS and version: (macOS Ventura, Ubuntu 22.04, ...)
24-
- Node.js version (must be an active, current, or maintenance version)
21+
22+
- Version of this library (hint: only the last release is supported)
23+
- OS and version: (macOS Ventura, Ubuntu 22.04, ...)
24+
- Node.js version (must be an active, current, or maintenance version)

.github/ISSUE_TEMPLATE/feature_request.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
5-
labels: ''
6-
assignees: ''
7-
4+
title: ""
5+
labels: ""
6+
assignees: ""
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/dependabot.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55

66
version: 2
77
updates:
8-
9-
# Maintain dependencies for GitHub Actions
8+
# Maintain dependencies for GitHub Actions
109
- package-ecosystem: "github-actions"
1110
directory: "/"
1211
schedule:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@
4343
or
4444

4545
npm install --save exiftool-vendored
46-
46+
4747
### Debug logging
4848

4949
If anything doesn't work, the first thing to try is enabling the logger.
5050

5151
You can provide a [Logger implementation](https://photostructure.github.io/batch-cluster.js/interfaces/Logger.html) via [`ExifToolOptions.logger`](https://photostructure.github.io/exiftool-vendored.js/interfaces/ExifToolOptions.html#logger), or set the environment variable `NODE_DEBUG=exiftool-vendored`. [See the debuglog() documentation](https://nodejs.org/docs/latest/api/util.html#utildebuglogsection-callback) for more details.
52-
52+
5353
### Regarding use within Electron
5454

5555
Due to how different every Electron application setup is, and how new versions
5656
frequently have breaking changes, **do not ask for help by opening a github
57-
issue on this project.**
57+
issue on this project.**
5858

5959
Please seek help via StackOverflow, the Electron discord, or other channels.
6060

SECURITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Only the latest version of this library is supported.
66

77
## Reporting a Vulnerability
88

9-
If you find a vulnerability, *or even think you have*, please send an email to
9+
If you find a vulnerability, _or even think you have_, please send an email to
1010
the author. Each signed git release by `mceachen` contains a monitored email
1111
address.
1212

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
theme: jekyll-theme-leap-day
1+
theme: jekyll-theme-leap-day

docs/serve.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"cleanUrls": false
3-
}
3+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"mktags": "node dist/update/mktags.js",
1919
"prelint": "npm run compile",
2020
"lint": "eslint src --ext .ts",
21-
"prettier": "prettier --write src/*.ts src/**/*.ts",
21+
"prettier": "prettier --write src/*.ts src/**/*.ts **/*.yml **/*.json **/*.md",
2222
"pretest": "npm run compile",
2323
"test": "mocha 'dist/*.spec.js'",
2424
"docs:1": "typedoc --options .typedoc.js",

0 commit comments

Comments
 (0)