зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
517 B
JavaScript
18 строки
517 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"rules": {
|
|
// Warn about cyclomatic complexity in functions.
|
|
"complexity": ["error", 42],
|
|
|
|
// XXX These are rules that are enabled in the recommended configuration, but
|
|
// disabled here due to failures when initially implemented. They should be
|
|
// removed (and hence enabled) at some stage.
|
|
"consistent-return": "off",
|
|
"object-shorthand": "off",
|
|
"no-unexpected-multiline": "off",
|
|
"no-unsafe-finally": "off",
|
|
"no-useless-call": "off",
|
|
}
|
|
};
|