Bug 1432840 - Fix/enable eslint 'no-useless-return'

https://eslint.org/docs/rules/no-useless-return
This commit is contained in:
Ed Morley 2018-01-24 15:08:42 +00:00
Родитель 6f8d1bcf3f
Коммит bc3b957953
2 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -59,7 +59,6 @@ module.exports = neutrino => {
'no-use-before-define': 'off', 'no-use-before-define': 'off',
'no-useless-constructor': 'off', 'no-useless-constructor': 'off',
'no-useless-escape': 'off', 'no-useless-escape': 'off',
'no-useless-return': 'off',
'no-var': 'off', 'no-var': 'off',
'object-property-newline': 'off', 'object-property-newline': 'off',
'object-shorthand': 'off', 'object-shorthand': 'off',

Просмотреть файл

@ -472,7 +472,6 @@ perf.controller('GraphsCtrl', [
function updateSelectedItem() { function updateSelectedItem() {
if (!$scope.selectedDataPoint) { if (!$scope.selectedDataPoint) {
hideTooltip(); hideTooltip();
return;
} }
} }