зеркало из https://github.com/mozilla/gecko-dev.git
13 строки
379 B
JavaScript
13 строки
379 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
// Extend from the devtools eslintrc.
|
|
"extends": "../../../.eslintrc.js",
|
|
|
|
"rules": {
|
|
/* eslint-disable max-len */
|
|
// All code in this directory must be content-clean.
|
|
"mozilla/reject-some-requires": ["error", "^(chrome|chrome:.*|resource:.*|devtools/server/.*|.*\\.jsm|devtools/shared/platform/(chome|content)/.*)$"],
|
|
},
|
|
};
|