You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.7 KiB
66 lines
1.7 KiB
3 years ago
|
/**
|
||
|
* @fileoverview Enforce a maximum number of classes per file
|
||
|
* @author James Garbutt <https://github.com/43081j>
|
||
|
*/
|
||
|
"use strict";
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Requirements
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Rule Definition
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
module.exports = {
|
||
|
meta: {
|
||
|
type: "suggestion",
|
||
|
|
||
|
docs: {
|
||
|
description: "enforce a maximum number of classes per file",
|
||
|
category: "Best Practices",
|
||
|
recommended: false,
|
||
|
url: "https://eslint.org/docs/rules/max-classes-per-file"
|
||
|
},
|
||
|
|
||
|
schema: [
|
||
|
{
|
||
|
type: "integer",
|
||
|
minimum: 1
|
||
|
}
|
||
|
],
|
||
|
|
||
|
messages: {
|
||
|
maximumExceeded: "File has too many classes ({{ classCount }}). Maximum allowed is {{ max }}."
|
||
|
}
|
||
|
},
|
||
|
create(context) {
|
||
|
|
||
|
const maxClasses = context.options[0] || 1;
|
||
|
|
||
|
let classCount = 0;
|
||
|
|
||
|
return {
|
||
|
Program() {
|
||
|
classCount = 0;
|
||
|
},
|
||
|
"Program:exit"(node) {
|
||
|
if (classCount > maxClasses) {
|
||
|
context.report({
|
||
|
node,
|
||
|
messageId: "maximumExceeded",
|
||
|
data: {
|
||
|
classCount,
|
||
|
max: maxClasses
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
"ClassDeclaration, ClassExpression"() {
|
||
|
classCount++;
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
};
|