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:
1ambda 2017-04-15 01:01:52 +09:00
parent 3a6626f0d2
commit 40125e95c8
35 changed files with 0 additions and 40 deletions

View file

@ -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,

View file

@ -57,4 +57,3 @@ function MainCtrl($scope, $rootScope, $window, arrayOrderingSrv) {
// Remove BootstrapDialog animation
BootstrapDialog.configDefaultOptions({animate: false});
}

View file

@ -187,4 +187,3 @@ function CredentialCtrl($scope, $rootScope, $http, baseUrlSrv, ngToast) {
init();
}

View file

@ -99,5 +99,3 @@ export function createPersistableConfig(currentConf) {
return filtered;
}

View file

@ -16,4 +16,3 @@ import HeliumController from './helium.controller';
angular.module('zeppelinWebApp')
.controller('HeliumCtrl', HeliumController);

View file

@ -722,4 +722,3 @@ function InterpreterCtrl($rootScope, $scope, $http, baseUrlSrv, ngToast, $timeou
init();
}

View file

@ -181,4 +181,3 @@ function JobmanagerCtrl($scope, websocketMsgSrv, $interval, ngToast, $q, $timeou
$scope.doFiltering(jobInfomations, $scope.filterConfig);
});
}

View file

@ -45,4 +45,3 @@ function jobManagerFilter() {
}
return filterContext;
}

View file

@ -107,4 +107,3 @@ function JobCtrl($scope, $http, baseUrlSrv) {
};
}

View file

@ -85,4 +85,3 @@ function NotebookReposCtrl($http, baseUrlSrv, ngToast) {
_getInterpreterSettings();
};
}

View file

@ -153,4 +153,3 @@ function SearchResultCtrl($scope, $routeParams, searchService) {
};
};
}

View file

@ -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;

View file

@ -34,4 +34,3 @@ function arrayOrderingSrv(TRASH_FOLDER_ID) {
}
};
}

View file

@ -46,4 +46,3 @@ function baseUrlSrv() {
return path.replace(/\/$/, '');
};
}

View file

@ -37,4 +37,3 @@ function browserDetectService() {
return false;
};
}

View file

@ -24,4 +24,3 @@ function dropdownInput() {
}
};
}

View file

@ -36,4 +36,3 @@ function codeEditor($templateRequest, $compile) {
}
};
}

View file

@ -19,4 +19,3 @@ function ElasticInputCtrl() {
vm.showEditor = false;
vm.value = '';
}

View file

@ -35,4 +35,3 @@ function expandCollapse() {
}
};
}

View file

@ -29,4 +29,3 @@ function interpreterDirective($timeout) {
}
};
}

View file

@ -85,4 +85,3 @@ function LoginCtrl($scope, $rootScope, $http, $httpParamSerializer, baseUrlSrv,
initValues();
});
}

View file

@ -28,4 +28,3 @@ function ngEnter() {
});
};
}

View file

@ -26,4 +26,3 @@ function ngEscape() {
});
};
}

View file

@ -79,4 +79,3 @@ function noteListDataFactory(TRASH_FOLDER_ID) {
return notes;
}

View file

@ -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
});
}

View file

@ -43,4 +43,3 @@ function modalvisible() {
}
};
}

View file

@ -135,4 +135,3 @@ function NoteImportCtrl($scope, $timeout, websocketMsgSrv) {
angular.element('#noteImportModal').modal('hide');
});
}

View file

@ -22,4 +22,3 @@ function popoverHtmlUnsafePopup() {
templateUrl: 'components/popover-html-unsafe/popover-html-unsafe-popup.html'
};
}

View file

@ -19,4 +19,3 @@ function popoverHtmlUnsafe($tooltip) {
return $tooltip('popoverHtmlUnsafe', 'popover', 'click');
}

View file

@ -44,4 +44,3 @@ function RenameCtrl($scope) {
return !!str.trim();
}
}

View file

@ -67,4 +67,3 @@ function resizable() {
}
};
}

View file

@ -49,4 +49,3 @@ function saveAsService(browserDetectService) {
}
};
}

View file

@ -31,4 +31,3 @@ function searchService($resource, baseUrlSrv) {
this.searchTerm = '';
}

View file

@ -194,4 +194,3 @@ function websocketEvents($rootScope, $websocket, $location, baseUrlSrv) {
return websocketCalls;
}

View file

@ -338,4 +338,3 @@ function websocketMsgSrv($rootScope, websocketEvents) {
};
}