chore: initial project commit

This commit is contained in:
Joe Fleming
2021-07-23 15:10:14 -07:00
commit bfe452f820
6 changed files with 2116 additions and 0 deletions

11
.eslintrc.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": "semistandard",
"rules": {
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline"
}]
}
}