mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-16 03:34:06 +00:00
34da32ec3c
Differential Revision: https://phabricator.services.mozilla.com/D34695 --HG-- extra : source : 078747ad644246551a165a176a691e0440553c85 extra : intermediate-source : 3b39b237ae3c49eb6c9d56a2ef8bfb5134b878da
13 lines
284 B
JavaScript
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",
|
|
}
|
|
};
|