mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
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:
parent
ca94341826
commit
3a6626f0d2
3 changed files with 4 additions and 5 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue