зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
449 B
JavaScript
25 строки
449 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"extends": [
|
|
"../.eslintrc.js"
|
|
],
|
|
"globals": {
|
|
"Cc": true,
|
|
"Ci": true,
|
|
"Components": true,
|
|
"console": true,
|
|
"Cu": true,
|
|
"dump": true,
|
|
"Services": true,
|
|
"XPCOMUtils": true
|
|
},
|
|
"rules": {
|
|
// Warn about cyclomatic complexity in functions.
|
|
"complexity": ["error", 42],
|
|
|
|
// Maximum depth callbacks can be nested.
|
|
"max-nested-callbacks": ["error", 10],
|
|
}
|
|
};
|