[eslint] remove exception for no-empty, and fix violations

This commit is contained in:
spalger
2017-06-14 19:17:03 -07:00
parent 499b51dfb3
commit c9dc690698
5 changed files with 23 additions and 7 deletions

View File

@ -1,7 +1,11 @@
let config = {};
try {
config = require('../../.aws-config.json');
} catch (e) {}
} catch (error) {
if (error.code !== 'ENOENT') {
throw error;
}
}
module.exports = {
upload_archives: {