ESlint array-bracket-spacing

and object-property-newline
This commit is contained in:
Peter Jaszkowiak
2017-02-18 00:04:34 -07:00
parent 554075b312
commit d7526b5e44
6 changed files with 18 additions and 7 deletions

View File

@@ -16,3 +16,4 @@ logs/
*.iws
/coverage
/build
.eslintrc

View File

@@ -107,8 +107,8 @@
"dot-notation": "off",
"func-call-spacing": "off",
"newline-per-chained-call": "off",
"array-bracket-spacing": "off",
"object-property-newline": "off",
// "array-bracket-spacing": "off",
// "object-property-newline": "off",
// "no-continue": "off",
// "no-extra-semi": "off",
// "no-spaced-func": "off",

View File

@@ -94,7 +94,9 @@ define('admin/extend/widgets', ['jqueryui'], function (jqueryui) {
if (data[d].name) {
if (widgetData[data[d].name]) {
if(!Array.isArray(widgetData[data[d].name])) {
widgetData[data[d].name] = [ widgetData[data[d].name] ];
widgetData[data[d].name] = [
widgetData[data[d].name],
];
}
widgetData[data[d].name].push(data[d].value);
}else{

View File

@@ -56,7 +56,15 @@ module.exports = function (db, module) {
$project: {
value: 1,
score: {
$cond: { if: { $eq: [ "$_key", sets[index] ] }, then: { $multiply: [ '$score', weight ] }, else: '$score' },
$cond: {
if: {
$eq: ["$_key", sets[index]],
},
then: {
$multiply: ['$score', weight],
},
else: '$score',
},
},
},
});