forked from mirrors/gecko-dev
This creates a new BackupService component that lives under browser/components/backup. It doesn't do much yet, except allow itself to be instantiated (which currently occurs using the idle scheduler in BrowserGlue) - but it does set us up to have docs, SphinxJS exporting for JSDoc, linting, etc. Differential Revision: https://phabricator.services.mozilla.com/D202753
9 lines
288 B
JavaScript
9 lines
288 B
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
module.exports = {
|
|
extends: ["plugin:mozilla/require-jsdoc"],
|
|
};
|