gecko-dev/browser/.eslintrc.js
Mark Banner be75c1f909 Bug 1315617 - Fix remaining no-unused-vars for local scope in browser/ and enable the rule for all of browser/ r=mossop
MozReview-Commit-ID: FO1p5G5K3zg

--HG--
extra : rebase_source : 24b1793eff129370f23ad054543471fd3bf860be
2016-11-03 11:56:28 +00:00

16 lines
251 B
JavaScript

"use strict";
module.exports = {
"extends": [
"../toolkit/.eslintrc.js"
],
"rules": {
"no-unused-vars": ["error", {
"vars": "local",
"varsIgnorePattern": "^Cc|Ci|Cu|Cr|EXPORTED_SYMBOLS",
"args": "none",
}]
}
};