fix: no-trailing-spaces

```
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/helium/helium.controller.js (3/0)
  ✖   44:1  Trailing spaces not allowed  no-trailing-spaces
  ✖   48:1  Trailing spaces not allowed  no-trailing-spaces
  ✖  111:1  Trailing spaces not allowed  no-trailing-spaces
```
This commit is contained in:
1ambda 2017-04-15 01:00:53 +09:00
parent ca94341826
commit 3a6626f0d2
3 changed files with 4 additions and 5 deletions

View file

@ -43,7 +43,6 @@
"arrow-parens": 0,
"no-unneeded-ternary": 0,
"no-multiple-empty-lines": 0,
"no-trailing-spaces": 0,
"padded-blocks": 0,
"indent": 0,
"no-var": 0,

View file

@ -41,11 +41,11 @@ export default function HeliumCtrl($scope, $rootScope, $sce,
$scope.itemsPerPage = 10;
$scope.currentPage = 1;
$scope.maxSize = 5;
$scope.pkgSearchResults = pkgSearchResults;
$scope.defaultPackages = defaultPackages;
classifyPkgType($scope.defaultPackages);
return heliumService.getAllPackageConfigs()
})
.then(defaultPackageConfigs => {
@ -108,7 +108,7 @@ export default function HeliumCtrl($scope, $rootScope, $sce,
for (var idx in _.keys(HeliumType)) {
allTypesOfPkg[_.keys(HeliumType)[idx]] = pkgsArr[idx];
}
$scope.allTypesOfPkg = allTypesOfPkg;
};

View file

@ -16,7 +16,7 @@ angular.module('zeppelinWebApp').controller('NoteImportCtrl', NoteImportCtrl);
function NoteImportCtrl($scope, $timeout, websocketMsgSrv) {
'ngInject';
var vm = this;
$scope.note = {};
$scope.note.step1 = true;