initial commit

This commit is contained in:
2023-09-10 20:38:49 -05:00
commit 7a1366303f
16 changed files with 3268 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
module.exports = {
env: {
node: true,
commonjs: true,
es2021: true,
},
extends: ['airbnb', 'prettier'],
parserOptions: {
ecmaVersion: 'latest',
},
rules: {
'prefer-destructuring': 'off',
'no-bitwise': 'off',
'class-methods-use-this': 'off',
'import/extensions': 'off',
'import/no-relative-packages': 'off',
},
};