chore: add script runner

This commit is contained in:
Yuzu 2022-07-03 16:19:09 -05:00
parent aba8f8bd5a
commit 04d9088e64
2 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,8 @@
{ {
"fmt": { "fmt": {
"files": {
"exclude": "vendor"
},
"options": { "options": {
"indentWidth": 4, "indentWidth": 4,
"lineWidth": 120 "lineWidth": 120

6
scripts.ts Normal file
View File

@ -0,0 +1,6 @@
export default {
scripts: {
fmt: "deno fmt",
check: "deno check mod.ts",
},
};