Skip to content

Commit 4705f7b

Browse files
add things back
1 parent f62591d commit 4705f7b

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
lines changed

lib/apiClient.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict';
12
const request = require('request-promise');
23

34
function ApiClient(config, component) {

lib/processEventDataHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*eslint no-console: 0 */
2-
2+
'use strict';
33
const moment = require('moment-timezone');
44
const _ = require('lodash');
55
const Q = require('q');

lib/triggers/contacts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint no-console: 0 no-invalid-this: 0*/
2-
2+
'use strict';
33
const messages = require('elasticio-node').messages;
44
const co = require('co');
55
const MicrosoftGraph = require('msgraph-sdk-javascript');

spec/actions/createEvent.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
'use strict';
22

33
describe('Outlook Create Event', function test() {
44

spec/dynamic_selector_functions/getCalendars.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
'use strict';
22

33
describe('Outlook Get Calendars', function test() {
44
const nock = require('nock');

spec/helpers/checkRequiredFields.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
'use strict';
22

33
describe('Outlook Check Required Fields', function test() {
44

spec/helpers/formatDate.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
'use strict';
22

33
describe('Outlook Format Date', function test() {
44

spec/helpers/processEventDataHelper.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
'use strict';
22
const moment = require('moment');
33

44
describe('Outlook Process Event Data', function test() {

spec/triggers/getContacts.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
'use strict';
22

33
describe('Outlook Contacts', function test() {
44

0 commit comments

Comments
 (0)