custom lint rule for no logfile calls
initial package setup
This commit is contained in:
15
deno.json
15
deno.json
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user