[eslint] remove exception for no-var, fix violations

This commit is contained in:
spalger
2017-06-14 18:56:26 -07:00
parent 3d75c6ff0f
commit 058569d4f8
11 changed files with 21 additions and 17 deletions

View File

@ -6,7 +6,7 @@ const stable = pkg.config.supported_es_branches;
const unstable = pkg.config.unstable_es_branches;
const branches = [].concat(stable, unstable);
var utils = {
const utils = {
branchSuffix: function (branch) {
return branch === utils.branches._default ? '' : '_' + _.snakeCase(branch);
},