Fixed ESlint errors

This commit is contained in:
Christoph Oberhofer
2016-02-26 07:26:53 +01:00
parent 0ed588ecb5
commit 835f524b33
7 changed files with 11 additions and 9 deletions
+3 -1
View File
@@ -23,7 +23,9 @@
"destructuring": true,
"objectLiteralComputedProperties": true
},
"globals": {},
"globals": {
"ENV": true
},
"rules": {
"no-unused-expressions": 1,
"no-extra-boolean-cast": 1,
+1 -1
View File
File diff suppressed because one or more lines are too long
+3 -3
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -27,7 +27,7 @@ module.exports = {
drawBoundingBox: false,
showFrequency: false,
drawScanline: false,
showPattern: false,
showPattern: false
}
},
locator: {
+1 -1
View File
@@ -1,6 +1,6 @@
let config;
if(ENV.development){
if (ENV.development){
config = require('./config.dev.js');
} else if (ENV.node) {
config = require('./config.node.js');
+1 -1
View File
@@ -20,6 +20,6 @@ module.exports = {
},
locator: {
halfSample: true,
patchSize: "medium", // x-small, small, medium, large, x-large
patchSize: "medium" // x-small, small, medium, large, x-large
}
};
+1 -1
View File
@@ -26,6 +26,6 @@ module.exports = {
},
locator: {
halfSample: true,
patchSize: "medium", // x-small, small, medium, large, x-large
patchSize: "medium" // x-small, small, medium, large, x-large
}
};