зеркало из https://github.com/mozilla/gecko-dev.git
13 строки
343 B
JavaScript
13 строки
343 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
|
|
"rules": {
|
|
// XXX Bug 1358949 - This should be reduced down - probably to 20 or to
|
|
// be removed & synced with the mozilla/recommended value.
|
|
"complexity": ["error", 56],
|
|
|
|
"no-unused-vars": ["error", {"args": "none", "vars": "local", "varsIgnorePattern": "^(ids|ignored|unused)$"}],
|
|
}
|
|
};
|