mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 06:08:11 +00:00
ESLint upgrade, implement additional rules (#3230)
* upgrade to ESLintv7, added overrides for rules violated * removed overrides for spec files * fixed no-prototype-builtins issues * added rules for default-case-last, default-param-last, grouped-accessor-pairs, no-constructor-return, and added override for one violation Co-authored-by: Andrew Henry <akhenry@gmail.com> Co-authored-by: Shefali Joshi <simplyrender@gmail.com>
This commit is contained in:
@ -58,7 +58,8 @@ define(
|
||||
var removeSelectable = openmct.selection.selectable(
|
||||
element[0],
|
||||
scope.$eval(attrs.mctSelectable),
|
||||
attrs.hasOwnProperty('mctInitSelect') && scope.$eval(attrs.mctInitSelect) !== false
|
||||
Object.prototype.hasOwnProperty.call(attrs, 'mctInitSelect')
|
||||
&& scope.$eval(attrs.mctInitSelect) !== false
|
||||
);
|
||||
|
||||
scope.$on("$destroy", function () {
|
||||
|
@ -76,7 +76,7 @@ define(
|
||||
var search = this.$location.search(),
|
||||
arr = [];
|
||||
for (var key in search) {
|
||||
if (search.hasOwnProperty(key)) {
|
||||
if (Object.prototype.hasOwnProperty.call(search, key)) {
|
||||
arr.push(key + '=' + search[key]);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user