From 203528d6a9b6f20298efc83fa9bc11e25ba7d12c Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Tue, 7 Jan 2025 18:13:57 +0100 Subject: [PATCH] Update pull_request_template.md --- .github/pull_request_template.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 1607fe55..6c5fdd08 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,8 +6,8 @@ If you're adding support for a new file type, please follow the below steps: - Add the file's MIME type to the `types` array in `supported.js`. - Add the file type detection logic to the `core.js` file - Determine the appropriate detection confidence category: - - `detectConfident()`: Detections with a high degree of certainty in identifying the correct file type - - `detectImprecise()`: Detections with limited supporting data, resulting in a higher likelihood of false positives + - `detectConfident()`: Detections with a high degree of certainty in identifying the correct file type + - `detectImprecise()`: Detections with limited supporting data, resulting in a higher likelihood of false positives - Respect the sequence: - Signature with shorter sample size (counted from offset 0 until the last required byte position) will be executed first. - Only the initial determination for the file type counts for the sequence.