Added logging, changed some directory structure

This commit is contained in:
2018-01-13 21:33:40 -05:00
parent f079a5f067
commit 8e72ffb917
73656 changed files with 35284 additions and 53718 deletions

33
goTorrentWebUI/node_modules/react-resizable/.eslintrc generated vendored Normal file
View File

@@ -0,0 +1,33 @@
{
"root": true,
"parser": "babel-eslint",
"plugins": [
"react"
],
"extends": "eslint:recommended",
"rules": {
"strict": 0,
"quotes": [0, "single"],
"curly": [1, "multi-line"],
"camelcase": 0,
"comma-dangle": 0,
"dot-notation": 0,
"no-console": 0,
"no-use-before-define": [1, "nofunc"],
"no-underscore-dangle": 0,
"no-unused-vars": 0,
"new-cap": 0,
"react/jsx-uses-vars": 1,
"semi": [1, "always"]
},
env: {
"browser": true,
"node": true
},
"globals": {
// For Flow
"ReactElement",
"ReactClass",
"SyntheticEvent"
}
}