-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1072 from openedx/alangsto/test_revert
Revert eslint migration
- Loading branch information
Showing
35 changed files
with
14,764 additions
and
10,781 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"extends": "@edx/eslint-config", | ||
"extends": "eslint-config-edx", | ||
"env": { | ||
"worker": true | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 11 additions & 11 deletions
22
edx_proctoring/static/proctoring/js/collections/proctored_exam_allowance_collection.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
edx = edx || {}; | ||
(Backbone => { | ||
'use strict'; | ||
(function(Backbone) { | ||
'use strict'; | ||
|
||
edx.instructor_dashboard = edx.instructor_dashboard || {}; | ||
edx.instructor_dashboard.proctoring = edx.instructor_dashboard.proctoring || {}; | ||
edx.instructor_dashboard = edx.instructor_dashboard || {}; | ||
edx.instructor_dashboard.proctoring = edx.instructor_dashboard.proctoring || {}; | ||
|
||
edx.instructor_dashboard.proctoring.ProctoredExamAllowanceCollection = Backbone.Collection.extend({ | ||
/* model for a collection of ProctoredExamAllowance */ | ||
model: edx.instructor_dashboard.proctoring.ProctoredExamAllowanceModel, | ||
url: '/api/edx_proctoring/v1/proctored_exam/', | ||
}); | ||
const proctoredExamAllowanceCollection = edx.instructor_dashboard.proctoring.ProctoredExamAllowanceCollection; | ||
this.edx.instructor_dashboard.proctoring.ProctoredExamAllowanceCollection = proctoredExamAllowanceCollection; | ||
edx.instructor_dashboard.proctoring.ProctoredExamAllowanceCollection = Backbone.Collection.extend({ | ||
/* model for a collection of ProctoredExamAllowance */ | ||
model: edx.instructor_dashboard.proctoring.ProctoredExamAllowanceModel, | ||
url: '/api/edx_proctoring/v1/proctored_exam/' | ||
}); | ||
this.edx.instructor_dashboard.proctoring.ProctoredExamAllowanceCollection = | ||
edx.instructor_dashboard.proctoring.ProctoredExamAllowanceCollection; | ||
}).call(this, Backbone); |
22 changes: 11 additions & 11 deletions
22
edx_proctoring/static/proctoring/js/collections/proctored_exam_attempt_grouped_collection.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
edx = edx || {}; | ||
(Backbone => { | ||
'use strict'; | ||
(function(Backbone) { | ||
'use strict'; | ||
|
||
edx.instructor_dashboard = edx.instructor_dashboard || {}; | ||
edx.instructor_dashboard.proctoring = edx.instructor_dashboard.proctoring || {}; | ||
edx.instructor_dashboard = edx.instructor_dashboard || {}; | ||
edx.instructor_dashboard.proctoring = edx.instructor_dashboard.proctoring || {}; | ||
|
||
edx.instructor_dashboard.proctoring.ProctoredExamAttemptGroupedCollection = Backbone.Collection.extend({ | ||
/* model for a collection of ProctoredExamAttempt */ | ||
model: edx.instructor_dashboard.proctoring.ProctoredExamAttemptModel, | ||
url: '/api/edx_proctoring/v1/proctored_exam/attempt/grouped/course_id/', | ||
}); | ||
const groupedCollection = edx.instructor_dashboard.proctoring.ProctoredExamAttemptGroupedCollection; | ||
this.edx.instructor_dashboard.proctoring.ProctoredExamAttemptGroupedCollection = groupedCollection; | ||
edx.instructor_dashboard.proctoring.ProctoredExamAttemptGroupedCollection = Backbone.Collection.extend({ | ||
/* model for a collection of ProctoredExamAttempt */ | ||
model: edx.instructor_dashboard.proctoring.ProctoredExamAttemptModel, | ||
url: '/api/edx_proctoring/v1/proctored_exam/attempt/grouped/course_id/' | ||
}); | ||
this.edx.instructor_dashboard.proctoring.ProctoredExamAttemptGroupedCollection = | ||
edx.instructor_dashboard.proctoring.ProctoredExamAttemptGroupedCollection; | ||
}).call(this, Backbone); |
22 changes: 11 additions & 11 deletions
22
edx_proctoring/static/proctoring/js/collections/proctored_exam_collection.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
/* globals ProctoredExamModel:false */ | ||
edx = edx || {}; | ||
(Backbone => { | ||
'use strict'; | ||
(function(Backbone) { | ||
'use strict'; | ||
|
||
edx.instructor_dashboard = edx.instructor_dashboard || {}; | ||
edx.instructor_dashboard.proctoring = edx.instructor_dashboard.proctoring || {}; | ||
edx.instructor_dashboard = edx.instructor_dashboard || {}; | ||
edx.instructor_dashboard.proctoring = edx.instructor_dashboard.proctoring || {}; | ||
|
||
edx.instructor_dashboard.proctoring.ProctoredExamCollection = Backbone.Collection.extend({ | ||
/* model for a collection of ProctoredExamAllowance */ | ||
model: ProctoredExamModel, | ||
url: '/api/edx_proctoring/v1/proctored_exam/exam/course_id/', | ||
}); | ||
const proctoredExamCollection = edx.instructor_dashboard.proctoring.ProctoredExamCollection; | ||
this.edx.instructor_dashboard.proctoring.ProctoredExamCollection = proctoredExamCollection; | ||
edx.instructor_dashboard.proctoring.ProctoredExamCollection = Backbone.Collection.extend({ | ||
/* model for a collection of ProctoredExamAllowance */ | ||
model: ProctoredExamModel, | ||
url: '/api/edx_proctoring/v1/proctored_exam/exam/course_id/' | ||
}); | ||
this.edx.instructor_dashboard.proctoring.ProctoredExamCollection = | ||
edx.instructor_dashboard.proctoring.ProctoredExamCollection; | ||
}).call(this, Backbone); |
18 changes: 9 additions & 9 deletions
18
edx_proctoring/static/proctoring/js/collections/proctored_exam_onboarding_collection.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
edx = edx || {}; | ||
(Backbone => { | ||
'use strict'; | ||
(function(Backbone) { | ||
'use strict'; | ||
|
||
edx.instructor_dashboard = edx.instructor_dashboard || {}; | ||
edx.instructor_dashboard.proctoring = edx.instructor_dashboard.proctoring || {}; | ||
edx.instructor_dashboard = edx.instructor_dashboard || {}; | ||
edx.instructor_dashboard.proctoring = edx.instructor_dashboard.proctoring || {}; | ||
|
||
edx.instructor_dashboard.proctoring.ProctoredExamOnboardingCollection = Backbone.Collection.extend({ | ||
url: '/api/edx_proctoring/v1/user_onboarding/status/course_id/', | ||
}); | ||
const proctoredExamOnboardingCollection = edx.instructor_dashboard.proctoring.ProctoredExamOnboardingCollection; | ||
this.edx.instructor_dashboard.proctoring.ProctoredExamOnboardingCollection = proctoredExamOnboardingCollection; | ||
edx.instructor_dashboard.proctoring.ProctoredExamOnboardingCollection = Backbone.Collection.extend({ | ||
url: '/api/edx_proctoring/v1/user_onboarding/status/course_id/' | ||
}); | ||
this.edx.instructor_dashboard.proctoring.ProctoredExamOnboardingCollection = | ||
edx.instructor_dashboard.proctoring.ProctoredExamOnboardingCollection; | ||
}).call(this, Backbone); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.