feat: initial setup

This commit is contained in:
Sathishkumar Krishnan
2021-12-21 14:53:14 +05:30
parent 6ea5b6002a
commit c29fa95461
9 changed files with 5771 additions and 0 deletions

22
.eslintrc.js Normal file
View File

@@ -0,0 +1,22 @@
module.exports = {
root: true,
env: {
node: true,
es2021: true,
},
extends: ["eslint:recommended", "google"],
parserOptions: {
ecmaVersion: 12,
},
rules: {
"indent": ["error", 2, { SwitchCase: 1 }],
"object-curly-spacing": ["error", "always"],
"max-len": ["error", { code: 150 }],
"space-before-function-paren": 0,
"valid-jsdoc": 0,
"camelcase": 0,
"new-cap": 0,
"quotes": 0,
"comma-dangle": 0,
},
};