gecko-dev/toolkit/components/reader/.eslintrc.js
Dan Banner b2e847755c Bug 1367704 - Enable the semi ESLint rule across the tree. r=standard8
MozReview-Commit-ID: GrlcOI9K2hJ

--HG--
extra : rebase_source : 6574cf3c67eb11733ffd9999c260f71c8551abc4
2017-05-28 19:57:46 +01:00

12 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"}],
},
}