14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
"use strict";
|
|
|
|
module.exports = { // eslint-disable-line no-undef
|
|
"extends": [
|
|
"../../../../testing/mochitest/mochitest.eslintrc.js",
|
|
"../../../../testing/mochitest/chrome.eslintrc.js"
|
|
],
|
|
"rules": {
|
|
"brace-style": "off",
|
|
"no-undef": "off",
|
|
"no-unused-vars": "off",
|
|
},
|
|
};
|