custom lint rule for no logfile calls

initial package setup
This commit is contained in:
2025-04-30 01:29:18 -06:00
parent 9535222fb7
commit 65f0b4e0b7
3 changed files with 40 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
{
"name": "@bearmetal/pdf-tools",
"version": "0.0.1",
"tasks": {
"dev": "deno run -A --env-file=.env --watch main.ts",
"compile": "deno compile -o compare-form-fields.exe --target x86_64-pc-windows-msvc -R ./main.ts",
@@ -11,5 +12,17 @@
"pdf-lib": "npm:pdf-lib@^1.17.1",
"util/": "./util/"
},
"exports": {}
"exports": {
".": "./main.ts"
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
]
},
"plugins": [
"./no-log.ts"
]
}
}