gecko-dev/testing/raptor/.eslintrc.js
Mark Banner a05a7163d5 Bug 1551829 - Upgrade to ESLint 6.1.0. r=mossop
This picks up various improvements, especially to how configurations are handled and some new rules.

Differential Revision: https://phabricator.services.mozilla.com/D37271

--HG--
extra : moz-landing-system : lando
2019-08-21 19:08:44 +00:00

23 lines
283 B
JavaScript

"use strict";
module.exports = {
"env": {
"webextensions": true,
},
globals: {
"getTestConfig": false,
"startMark": true,
"endMark": true,
"name": true,
},
"plugins": [
"mozilla"
],
"rules": {
"mozilla/avoid-Date-timing": "error"
}
};