This commit is contained in:
Nicolás Serna 2022-07-04 00:00:59 -03:00
commit 1ca68f1326
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",
},
};