adds addon module

This commit is contained in:
TheBeastLT
2020-03-10 16:17:24 +01:00
parent 58aba322c2
commit a44826757c
8 changed files with 2169 additions and 0 deletions

29
addon/.eslintrc.json Normal file
View File

@@ -0,0 +1,29 @@
{
"extends": "google",
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"no-console": "off",
"no-use-before-define": "off",
"new-cap": "warn",
"max-len": [2, 120, {
"ignoreComments": true
}],
"object-curly-spacing": ["error", "always"],
"comma-dangle": [
"error",
"only-multiline"
],
"newline-after-var": "off",
"require-jsdoc": "off",
"strict": [
"error",
"never"
]
}
}