Skip to content

Commit 0bef405

Browse files
committed
Solve ESLint issues
1 parent c68170b commit 0bef405

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rules/utils/angular-rule.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ function angularRule(ruleDefinition) {
205205
if (node.type !== 'Identifier') {
206206
return;
207207
}
208-
208+
209209
var func;
210210
scope.variables.some(function(variable) {
211211
if (variable.name === node.name) {

test/di.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ valid.push({
204204
}, {
205205
code: 'angular.module("MyModule").value("emptyArray", []);',
206206
options: ['function']
207-
},{
207+
}, {
208208
code: 'vm.navRoutes = states.filter(x).sort(y);',
209209
options: ['function']
210210
}, {

0 commit comments

Comments
 (0)