Skip to content

Commit

Permalink
run pretter on *.json, *.yml, and *.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mceachen committed Jul 21, 2024
1 parent 096c056 commit be97d55
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 20 deletions.
14 changes: 7 additions & 7 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

title: ""
labels: ""
assignees: ""
---

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

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

- Version of this library (hint: only the last release is supported)
- OS and version: (macOS Ventura, Ubuntu 22.04, ...)
- Node.js version (must be an active, current, or maintenance version)
7 changes: 3 additions & 4 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

title: ""
labels: ""
assignees: ""
---

**Is your feature request related to a problem? Please describe.**
Expand Down
3 changes: 1 addition & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@

version: 2
updates:

# Maintain dependencies for GitHub Actions
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@
or

npm install --save exiftool-vendored

### Debug logging

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

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.

### Regarding use within Electron

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

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

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Only the latest version of this library is supported.

## Reporting a Vulnerability

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

Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
theme: jekyll-theme-leap-day
theme: jekyll-theme-leap-day
2 changes: 1 addition & 1 deletion docs/serve.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"cleanUrls": false
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"mktags": "node dist/update/mktags.js",
"prelint": "npm run compile",
"lint": "eslint src --ext .ts",
"prettier": "prettier --write src/*.ts src/**/*.ts",
"prettier": "prettier --write src/*.ts src/**/*.ts **/*.yml **/*.json **/*.md",
"pretest": "npm run compile",
"test": "mocha 'dist/*.spec.js'",
"docs:1": "typedoc --options .typedoc.js",
Expand Down

0 comments on commit be97d55

Please sign in to comment.