Bug 1504130 - Set environment of .eslintrc.js files to node; also fix two warnings; rs=NPOTB
This commit is contained in:
Родитель
22d98165ad
Коммит
d125d3b7f8
|
@ -1,5 +1,4 @@
|
|||
"use strict";
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
"root": true,
|
||||
|
@ -44,5 +43,10 @@ module.exports = {
|
|||
"rules": {
|
||||
"eol-last": "off",
|
||||
},
|
||||
}, {
|
||||
"files": "**/.eslintrc.js",
|
||||
"env": {
|
||||
"node": true,
|
||||
},
|
||||
}],
|
||||
};
|
||||
|
|
|
@ -504,7 +504,7 @@ function addAttendees(dialog, innerFrame, attendeesString) {
|
|||
let { eid: dlgid } = helpersForController(dialog);
|
||||
|
||||
let attendees = attendeesString.split(",");
|
||||
for (var attendee of attendees) {
|
||||
for (let attendee of attendees) {
|
||||
let calAttendee = innerFrame.window.attendees.find(
|
||||
aAtt => aAtt.id == `mailto:${attendee}`
|
||||
);
|
||||
|
@ -538,7 +538,7 @@ function deleteAttendees(event, innerFrame, attendeesString) {
|
|||
|
||||
// Now delete the attendees.
|
||||
let attendees = attendeesString.split(",");
|
||||
for (var attendee of attendees) {
|
||||
for (let attendee of attendees) {
|
||||
let attendeeToDelete = iframeLookup(`${ATTENDEES_ROW}/{"attendeeid":"mailto:${attendee}"}`);
|
||||
// Unfortunately the context menu of the attendees is not working in
|
||||
// Mozmill tests. Thus we have to use the JS-functions.
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
"use strict";
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
"extends": [
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
"use strict";
|
||||
|
||||
module.exports = { // eslint-disable-line no-undef
|
||||
module.exports = {
|
||||
"globals": {
|
||||
"Abortable": true,
|
||||
"AccountConfig": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
"use strict";
|
||||
|
||||
module.exports = { // eslint-disable-line no-undef
|
||||
module.exports = {
|
||||
"globals": {
|
||||
// abCommon.js
|
||||
"AbEditCard": true,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
"use strict";
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
globals: {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
"use strict";
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
"globals": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
"use strict";
|
||||
|
||||
module.exports = { // eslint-disable-line no-undef
|
||||
module.exports = {
|
||||
"globals": {
|
||||
// From toolkit/components/extensions/child/.eslintrc.js.
|
||||
"EventManager": true,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
"use strict";
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
"globals": {
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
"use strict";
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
"extends": "plugin:mozilla/xpcshell-test",
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
"use strict";
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
overrides: [{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
"use strict";
|
||||
|
||||
module.exports = { // eslint-disable-line no-undef
|
||||
module.exports = {
|
||||
"globals": {
|
||||
// preferences.js
|
||||
"AppConstants": true,
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
"use strict";
|
||||
/* eslint-env node */
|
||||
|
||||
module.exports = {
|
||||
"extends": [
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
"use strict";
|
||||
|
||||
module.exports = { // eslint-disable-line no-undef
|
||||
module.exports = {
|
||||
"globals": {
|
||||
"Log4Moz": true,
|
||||
"MailServices": true,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
"use strict";
|
||||
|
||||
module.exports = { // eslint-disable-line no-undef
|
||||
module.exports = {
|
||||
"globals": {
|
||||
"Feed": true,
|
||||
"FeedEnclosure": true,
|
||||
|
|
Загрузка…
Ссылка в новой задаче