You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{code: 'variable === undefined',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
28
-
{code: 'undefined === variable',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
29
-
{code: 'undefined !== variable',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
30
-
{code: 'variable !== undefined',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
31
-
{code: 'variable == undefined',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
32
-
{code: 'undefined == variable',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
33
-
{code: 'undefined != variable',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
34
-
{code: 'variable != undefined',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
35
-
{code: 'typeof variable === "undefined"',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
36
-
{code: 'typeof variable !== "undefined"',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
37
-
{code: '"undefined" == typeof variable',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
38
-
{code: '"undefined" != typeof variable',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
39
-
{code: '!angular.isUndefined(variable)',errors: [{message: 'Instead of !angular.isUndefined, you can use the out-of-box angular.isDefined method'}]},
40
-
{code: '!angular.isDefined(variable)',errors: [{message: 'Instead of !angular.isDefined, you can use the out-of-box angular.isUndefined method'}]}
27
+
{code: 'variable === undefined',output: 'angular.isUndefined(variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
28
+
{code: 'undefined === variable',output: 'angular.isUndefined(variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
29
+
{code: 'undefined !== variable',output: 'angular.isDefined(variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
30
+
{code: 'variable !== undefined',output: 'angular.isDefined(variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
31
+
{code: 'variable == undefined',output: 'angular.isUndefined(variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
32
+
{code: 'undefined == variable',output: 'angular.isUndefined(variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
33
+
{code: 'undefined != variable',output: 'angular.isDefined(variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
34
+
{code: 'variable != undefined',output: 'angular.isDefined(variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
35
+
{code: 'typeof variable === "undefined"',output: 'angular.isUndefined(typeof variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
36
+
{code: 'typeof variable !== "undefined"',output: 'angular.isDefined(typeof variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
37
+
{code: '"undefined" == typeof variable',output: 'angular.isUndefined(typeof variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
38
+
{code: '"undefined" != typeof variable',output: 'angular.isDefined(typeof variable)',errors: [{message: 'You should not use directly the "undefined" keyword. Prefer angular.isUndefined or angular.isDefined'}]},
39
+
{code: '!angular.isUndefined(variable)',output: 'angular.isDefined(variable)',errors: [{message: 'Instead of !angular.isUndefined, you can use the out-of-box angular.isDefined method'}]},
40
+
{code: '!angular.isDefined(variable)',output: 'angular.isUndefined(variable)',errors: [{message: 'Instead of !angular.isDefined, you can use the out-of-box angular.isUndefined method'}]}
0 commit comments