Initial Commit

This commit is contained in:
2018-05-19 02:20:19 +02:00
commit 8621248968
6554 changed files with 1121559 additions and 0 deletions

31
ProjectNow/NodeServer/node_modules/mongodb/.eslintrc generated vendored Normal file
View File

@@ -0,0 +1,31 @@
{
"extends": [
"eslint:recommended"
],
"env": {
"node": true,
"mocha": true
},
"globals": {
"Promise": true,
"Set": true,
"Symbol": true
},
"parserOptions": {
"ecmaVersion": 2017
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": ["error", {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 100
}],
"no-console": 0,
"eqeqeq": ["error", "always", {"null": "ignore"}],
"strict": ["error", "global"]
}
}