Merge branch 'scripts'

This commit is contained in:
Yuzu 2022-07-03 16:20:21 -05:00
commit a2ca96f86b
2 changed files with 9 additions and 0 deletions

View File

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

6
scripts.ts Normal file
View File

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