feat: first pass, good enough

This commit is contained in:
Josh Sherman 2023-03-20 22:29:32 -05:00
parent 593e16a0e7
commit 0a2525ec97
No known key found for this signature in database
GPG key ID: 55B058A80530EF22
5 changed files with 3799 additions and 2 deletions

16
.eslintrc.js Normal file
View file

@ -0,0 +1,16 @@
module.exports = {
env: {
es2021: true,
node: true,
},
extends: 'airbnb-base',
overrides: [
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
rules: {
'no-console': 'off',
},
};