1
0
mirror of https://github.com/vbalien/voca.git synced 2025-12-06 11:26:21 +09:00

initial commit

This commit is contained in:
2022-02-25 19:54:51 +09:00
commit dcfd123385
3 changed files with 171 additions and 0 deletions

26
deno.jsonc Normal file
View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"allowJs": true,
"lib": ["deno.window"],
"strict": true
},
"lint": {
"files": {
"include": ["src/"]
},
"rules": {
"tags": ["recommended"]
}
},
"fmt": {
"files": {
"include": ["src/"]
},
"options": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 2,
"proseWrap": "preserve"
}
}
}