зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
309 B
JavaScript
16 строки
309 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
extends: [
|
|
"plugin:mozilla/recommended"
|
|
],
|
|
|
|
rules: {
|
|
// XXX Bug 1326071 - This should be reduced down - probably to 20 or to
|
|
// be removed & synced with the mozilla/recommended value.
|
|
"complexity": ["error", 41],
|
|
|
|
"mozilla/no-task": "error",
|
|
}
|
|
};
|