gecko-dev/.eslintrc.js
Mark Hammond 493a6507b2 Bug 1318493 - Tell the eslint parser to use ecmaVersion 8. r=mossop
MozReview-Commit-ID: DPO9IrSxc2Q

--HG--
extra : rebase_source : fbbfd043d4bea2e61bb1baa1515a58226bdfdc75
2016-11-18 10:02:13 +11:00

18 lines
288 B
JavaScript

"use strict";
module.exports = {
// When adding items to this file please check for effects on sub-directories.
"plugins": [
"mozilla"
],
"rules": {
"mozilla/import-globals": "warn",
},
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
},
};