Restructure BD into a small mono-repo

This is a repo-wide refactor that introduces the injector to the main branch.

The new architecture is as such:
common/
injector/
renderer/
This commit is contained in:
2021-03-06 03:30:16 -05:00
parent cc0abf089b
commit e3b6cb6485
165 changed files with 13759 additions and 9891 deletions
+2 -59
View File
@@ -1,15 +1,5 @@
{
"extends": ["eslint:recommended", "plugin:react/recommended"],
"plugins": [
"react"
],
"settings": {
"react": {
"version": "16.12.0"
}
},
"env": {
"browser": true,
"node": true
},
"parserOptions": {
@@ -91,64 +81,17 @@
"template-curly-spacing": "error",
"wrap-iife": ["error", "inside"],
"yield-star-spacing": "error",
"yoda": "error",
"react/display-name": "off",
"react/prop-types": "off",
"react/jsx-key": "off",
"react/jsx-no-target-blank": "error",
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error"
"yoda": "error"
},
"globals": {
"webpackJsonp": "readonly",
"Proxy": "readonly",
"Set": "readonly",
"WeakMap": "readonly",
"Map": "readonly",
"Promise": "readonly",
"ace": "readonly",
"Reflect": "readonly",
"DiscordNative": "readonly",
"__non_webpack_require__": "readonly",
"Symbol": "readonly",
"alert": "off",
"blur": "off",
"caches": "off",
"close": "off",
"closed": "off",
"confirm": "off",
"crypto": "off",
"defaultstatus": "off",
"event": "off",
"external": "off",
"find": "off",
"focus": "off",
"frames": "off",
"history": "off",
"length": "off",
"location": "off",
"locationbar": "off",
"menubar": "off",
"name": "off",
"navigator": "off",
"open": "off",
"opener": "off",
"origin": "off",
"parent": "off",
"personalbar": "off",
"print": "off",
"prompt": "off",
"screen": "off",
"scroll": "off",
"scrollbars": "off",
"self": "off",
"status": "off",
"statusbar": "off",
"stop": "off",
"toolbar": "off",
"top": "off"
"Symbol": "readonly"
}
}