strfry-policies/deno.json

28 lines
462 B
JSON
Raw Normal View History

2023-03-01 02:22:14 +00:00
{
"tasks": {
2023-03-26 21:19:33 +00:00
"test": "deno test --allow-read --allow-write"
2023-03-01 02:22:14 +00:00
},
"lint": {
"files": {
"include": ["."]
},
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"files": {
"include": ["."]
},
"options": {
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
}
}
}