mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: no-multiple-empty-lines
``` /Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/resizable/resizable.directive.js (1/0) ✖ 70:1 Too many blank lines at the end of file. Max of 0 allowed no-multiple-empty-lines /Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/saveAs/saveAs.service.js (1/0) ✖ 52:1 Too many blank lines at the end of file. Max of 0 allowed no-multiple-empty-lines /Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/searchService/search.service.js (1/0) ✖ 34:1 Too many blank lines at the end of file. Max of 0 allowed no-multiple-empty-lines /Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/websocketEvents/websocketEvents.factory.js (1/0) ✖ 196:1 Too many blank lines at the end of file. Max of 0 allowed no-multiple-empty-lines /Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/websocketEvents/websocketMsg.service.js (1/0) ✖ 341:1 Too many blank lines at the end of file. Max of 0 allowed no-multiple-empty-lines ```
This commit is contained in:
parent
3a6626f0d2
commit
40125e95c8
35 changed files with 0 additions and 40 deletions
|
|
@ -42,7 +42,6 @@
|
|||
"no-extra-semi": 0,
|
||||
"arrow-parens": 0,
|
||||
"no-unneeded-ternary": 0,
|
||||
"no-multiple-empty-lines": 0,
|
||||
"padded-blocks": 0,
|
||||
"indent": 0,
|
||||
"no-var": 0,
|
||||
|
|
|
|||
|
|
@ -57,4 +57,3 @@ function MainCtrl($scope, $rootScope, $window, arrayOrderingSrv) {
|
|||
// Remove BootstrapDialog animation
|
||||
BootstrapDialog.configDefaultOptions({animate: false});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -187,4 +187,3 @@ function CredentialCtrl($scope, $rootScope, $http, baseUrlSrv, ngToast) {
|
|||
|
||||
init();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -99,5 +99,3 @@ export function createPersistableConfig(currentConf) {
|
|||
|
||||
return filtered;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -16,4 +16,3 @@ import HeliumController from './helium.controller';
|
|||
|
||||
angular.module('zeppelinWebApp')
|
||||
.controller('HeliumCtrl', HeliumController);
|
||||
|
||||
|
|
|
|||
|
|
@ -722,4 +722,3 @@ function InterpreterCtrl($rootScope, $scope, $http, baseUrlSrv, ngToast, $timeou
|
|||
|
||||
init();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -181,4 +181,3 @@ function JobmanagerCtrl($scope, websocketMsgSrv, $interval, ngToast, $q, $timeou
|
|||
$scope.doFiltering(jobInfomations, $scope.filterConfig);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -45,4 +45,3 @@ function jobManagerFilter() {
|
|||
}
|
||||
return filterContext;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -107,4 +107,3 @@ function JobCtrl($scope, $http, baseUrlSrv) {
|
|||
};
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -85,4 +85,3 @@ function NotebookReposCtrl($http, baseUrlSrv, ngToast) {
|
|||
_getInterpreterSettings();
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -153,4 +153,3 @@ function SearchResultCtrl($scope, $routeParams, searchService) {
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -129,9 +129,6 @@ export default class ScatterchartVisualization extends Nvd3ChartVisualization {
|
|||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
for (var i = 0; i < data.rows.length; i++) {
|
||||
row = data.rows[i];
|
||||
if (xAxis) {
|
||||
|
|
@ -205,7 +202,6 @@ export default class ScatterchartVisualization extends Nvd3ChartVisualization {
|
|||
};
|
||||
}
|
||||
|
||||
|
||||
// TODO remove epsilon jitter after bump to nvd3 > 1.8.5
|
||||
var xval = 0
|
||||
var yval = 0;
|
||||
|
|
|
|||
|
|
@ -34,4 +34,3 @@ function arrayOrderingSrv(TRASH_FOLDER_ID) {
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -46,4 +46,3 @@ function baseUrlSrv() {
|
|||
return path.replace(/\/$/, '');
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -37,4 +37,3 @@ function browserDetectService() {
|
|||
return false;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -24,4 +24,3 @@ function dropdownInput() {
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,4 +36,3 @@ function codeEditor($templateRequest, $compile) {
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ function ElasticInputCtrl() {
|
|||
vm.showEditor = false;
|
||||
vm.value = '';
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -35,4 +35,3 @@ function expandCollapse() {
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -29,4 +29,3 @@ function interpreterDirective($timeout) {
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -85,4 +85,3 @@ function LoginCtrl($scope, $rootScope, $http, $httpParamSerializer, baseUrlSrv,
|
|||
initValues();
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,4 +28,3 @@ function ngEnter() {
|
|||
});
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -26,4 +26,3 @@ function ngEscape() {
|
|||
});
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -79,4 +79,3 @@ function noteListDataFactory(TRASH_FOLDER_ID) {
|
|||
|
||||
return notes;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -95,7 +95,6 @@ function NotenameCtrl($scope, noteListDataFactory, $routeParams, websocketMsgSrv
|
|||
vm.websocketMsgSrv.getInterpreterSettings();
|
||||
};
|
||||
|
||||
|
||||
$scope.$on('interpreterSettings', function(event, data) {
|
||||
$scope.interpreterSettings = data.interpreterSettings;
|
||||
|
||||
|
|
@ -104,4 +103,3 @@ function NotenameCtrl($scope, noteListDataFactory, $routeParams, websocketMsgSrv
|
|||
});
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -43,4 +43,3 @@ function modalvisible() {
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -135,4 +135,3 @@ function NoteImportCtrl($scope, $timeout, websocketMsgSrv) {
|
|||
angular.element('#noteImportModal').modal('hide');
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -22,4 +22,3 @@ function popoverHtmlUnsafePopup() {
|
|||
templateUrl: 'components/popover-html-unsafe/popover-html-unsafe-popup.html'
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,4 +19,3 @@ function popoverHtmlUnsafe($tooltip) {
|
|||
|
||||
return $tooltip('popoverHtmlUnsafe', 'popover', 'click');
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -44,4 +44,3 @@ function RenameCtrl($scope) {
|
|||
return !!str.trim();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -67,4 +67,3 @@ function resizable() {
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -49,4 +49,3 @@ function saveAsService(browserDetectService) {
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -31,4 +31,3 @@ function searchService($resource, baseUrlSrv) {
|
|||
|
||||
this.searchTerm = '';
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -194,4 +194,3 @@ function websocketEvents($rootScope, $websocket, $location, baseUrlSrv) {
|
|||
|
||||
return websocketCalls;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -338,4 +338,3 @@ function websocketMsgSrv($rootScope, websocketEvents) {
|
|||
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue