[eslint] remove exception for no-empty, and fix violations
This commit is contained in:
@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user