gecko-dev/testing/marionette/.eslintrc.js
Victor Porof 34da32ec3c Bug 1558517 - Pre 3.1: Change conflicting "camelcase" rule which would fail after running Prettier, r=standard8
Differential Revision: https://phabricator.services.mozilla.com/D34695

--HG--
extra : source : 078747ad644246551a165a176a691e0440553c85
extra : intermediate-source : 3b39b237ae3c49eb6c9d56a2ef8bfb5134b878da
2019-06-12 11:43:25 +02:00

13 lines
284 B
JavaScript

"use strict";
// inherits from ../../tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js
module.exports = {
"rules": {
"camelcase": ["error", { "properties": "never" }],
"no-fallthrough": "error",
"no-undef-init": "error",
"no-var": "error",
}
};