This repository has been archived by the owner on Jan 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1944601
commit 740b555
Showing
28 changed files
with
554 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
coverage | ||
sherlock | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["editorconfig.editorconfig", "denoland.vscode-deno"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
{ | ||
"deno.enable": true, | ||
"deno.lint": true, | ||
"deno.config": "./deno.jsonc", | ||
"deno.importMap": "./import_map.json", | ||
"deno.unstable": true, | ||
"deno.suggest.imports.hosts": { | ||
"https://deno.land": true, | ||
"https://x.nest.land": true | ||
"https://deno.land": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
"[typescript]": { | ||
"editor.defaultFormatter": "denoland.vscode-deno", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "denoland.vscode-deno", | ||
"editor.formatOnSave": true | ||
}, | ||
"editor.defaultFormatter": "denoland.vscode-deno", | ||
"files.eol": "\n", | ||
"files.trimTrailingWhitespace": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"tasks": { | ||
"start": "deno run --allow-net -q --import-map=import_map.json cli.ts", | ||
"update-sites": "deno run --allow-net --allow-write --import-map=import_map.json ./src/scripts/update-sites.ts && deno fmt", | ||
"test": "deno test --import-map=import_map.json src", | ||
"coverage": "deno test src --coverage=coverage/profile", | ||
"coverage-pretty": "deno task coverage && deno coverage coverage/profile", | ||
"coverage-html": "deno task coverage && deno coverage coverage/profile --lcov > coverage/coverage.lcov && genhtml -o coverage/html coverage/coverage.lcov", | ||
"test-sites": "deno test --allow-net --import-map=import_map.json all-sites", | ||
"compile": "deno compile --output=sherlock -q --allow-net --import-map=import_map.json cli.ts" | ||
}, | ||
"lint": { | ||
"files": { | ||
"include": ["."], | ||
"exclude": ["coverage/"] | ||
}, | ||
"rules": { | ||
"tags": ["recommended"] | ||
} | ||
}, | ||
"fmt": { | ||
"files": { | ||
"include": ["."], | ||
"exclude": ["coverage/"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"imports": { | ||
"std/": "https://deno.land/[email protected]/" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const SHERLOCK_VERSION = "2.1.0"; | ||
export const SHERLOCK_VERSION = "2.2.0"; | ||
|
||
export { SherlockScanner } from "./src/sherlock-scanner.ts"; |
Oops, something went wrong.