first commit

This commit is contained in:
Raul Lugo
2024-12-25 20:30:57 +01:00
commit 6ef22531bb
165 changed files with 53426 additions and 0 deletions

22
deno.json Normal file
View File

@@ -0,0 +1,22 @@
{
"tasks": {
"test": "deno test --allow-read",
"check": "deno check ./src/mod.ts",
"fmt": "deno fmt",
"lint": "deno lint",
"example:xml": "deno run --allow-read --allow-net examples/validateXml.ts",
"build:npm": "deno run --allow-all dnt.config.mts"
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": ["src/", "examples/", "mod.ts"]
},
"lint": {
"exclude": ["npm/"]
}
}