forked from mirrors/gecko-dev
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D65703 --HG-- extra : moz-landing-system : lando
8 lines
149 B
JavaScript
8 lines
149 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
rules: {
|
|
// Disallow non-top level |var| declarations.
|
|
"mozilla/var-only-at-top-level": "error",
|
|
},
|
|
};
|