* feat: migrare eslint-config-edx * refactor: updated package-lock * refactor: updated package-lock --------- Co-authored-by: Bilal Qamar <59555732+BilalQamar95@users.noreply.github.com> Co-authored-by: Mashal Malik <107556986+Mashal-m@users.noreply.github.com> Co-authored-by: Abdullah Waheed <abdullah.waheed@arbisoft.com>
24 lines
519 B
JSON
24 lines
519 B
JSON
{
|
|
"extends": "@edx/eslint-config",
|
|
"globals": { // Try to avoid adding any new globals.
|
|
// Old compatibility things and hacks
|
|
"edx": true,
|
|
"XBlock": true,
|
|
|
|
// added by Django i18n tools
|
|
"gettext": true,
|
|
"ngettext": true,
|
|
|
|
// added by jasmine-jquery
|
|
"loadFixtures": true,
|
|
"appendLoadFixtures": true,
|
|
"readFixtures": true,
|
|
"setFixtures": true,
|
|
"appendSetFixtures": true,
|
|
"spyOnEvent": true,
|
|
|
|
// used by our requirejs implementation
|
|
"RequireJS": true
|
|
}
|
|
}
|