mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
MozReview-Commit-ID: IVMeZHGdVBk --HG-- extra : rebase_source : 0705e96256baf6dc82811297058aa1d820b2f119
11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"rules": {
|
|
"indent-legacy": ["error", 2, { "SwitchCase": 1 }],
|
|
"new-parens": "error",
|
|
"no-inner-declarations": "error",
|
|
"no-shadow": "error",
|
|
"no-unused-vars": ["error", {"vars": "all", "args": "none"}],
|
|
},
|
|
}
|