|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +const { getStaticValue } = require('@eslint-community/eslint-utils'); |
| 4 | +const utils = require('../utils'); |
| 5 | + |
| 6 | +// ------------------------------------------------------------------------------ |
| 7 | +// Rule Definition |
| 8 | +// ------------------------------------------------------------------------------ |
| 9 | + |
| 10 | +/** @type {import('eslint').Rule.RuleModule} */ |
| 11 | +module.exports = { |
| 12 | + meta: { |
| 13 | + type: 'suggestion', |
| 14 | + docs: { |
| 15 | + description: |
| 16 | + 'disallow rules `meta.schema` properties to include defaults', |
| 17 | + category: 'Rules', |
| 18 | + recommended: false, |
| 19 | + url: 'https://github.com/eslint-community/eslint-plugin-eslint-plugin/tree/HEAD/docs/rules/no-meta-schema-default.md', |
| 20 | + }, |
| 21 | + schema: [], |
| 22 | + messages: { |
| 23 | + foundDefault: 'Disallowed default value in schema.', |
| 24 | + }, |
| 25 | + }, |
| 26 | + |
| 27 | + create(context) { |
| 28 | + const sourceCode = context.sourceCode || context.getSourceCode(); // TODO: just use context.sourceCode when dropping eslint < v9 |
| 29 | + const { scopeManager } = sourceCode; |
| 30 | + const ruleInfo = utils.getRuleInfo(sourceCode); |
| 31 | + if (!ruleInfo) { |
| 32 | + return {}; |
| 33 | + } |
| 34 | + |
| 35 | + const schemaNode = utils.getMetaSchemaNode(ruleInfo.meta, scopeManager); |
| 36 | + if (!schemaNode) { |
| 37 | + return {}; |
| 38 | + } |
| 39 | + |
| 40 | + const schemaProperty = utils.getMetaSchemaNodeProperty( |
| 41 | + schemaNode, |
| 42 | + scopeManager, |
| 43 | + ); |
| 44 | + |
| 45 | + if (schemaProperty?.type === 'ObjectExpression') { |
| 46 | + checkSchemaElement(schemaProperty, true); |
| 47 | + } else if (schemaProperty?.type === 'ArrayExpression') { |
| 48 | + for (const element of schemaProperty.elements) { |
| 49 | + checkSchemaElement(element, true); |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + return {}; |
| 54 | + |
| 55 | + function checkSchemaElement(node) { |
| 56 | + if (node.type !== 'ObjectExpression') { |
| 57 | + return; |
| 58 | + } |
| 59 | + |
| 60 | + for (const { type, key, value } of node.properties) { |
| 61 | + if (type !== 'Property') { |
| 62 | + continue; |
| 63 | + } |
| 64 | + const staticKey = |
| 65 | + key.type === 'Identifier' ? { value: key.name } : getStaticValue(key); |
| 66 | + if (!staticKey?.value) { |
| 67 | + continue; |
| 68 | + } |
| 69 | + |
| 70 | + switch (key.name ?? key.value) { |
| 71 | + case 'allOf': |
| 72 | + case 'anyOf': |
| 73 | + case 'oneOf': { |
| 74 | + if (value.type === 'ArrayExpression') { |
| 75 | + for (const element of value.elements) { |
| 76 | + checkSchemaElement(element); |
| 77 | + } |
| 78 | + } |
| 79 | + |
| 80 | + break; |
| 81 | + } |
| 82 | + |
| 83 | + case 'properties': { |
| 84 | + if (Array.isArray(value.properties)) { |
| 85 | + for (const property of value.properties) { |
| 86 | + if (property.value?.type === 'ObjectExpression') { |
| 87 | + checkSchemaElement(property.value); |
| 88 | + } |
| 89 | + } |
| 90 | + } |
| 91 | + |
| 92 | + break; |
| 93 | + } |
| 94 | + |
| 95 | + case 'elements': { |
| 96 | + checkSchemaElement(value); |
| 97 | + |
| 98 | + break; |
| 99 | + } |
| 100 | + |
| 101 | + case 'default': { |
| 102 | + context.report({ |
| 103 | + messageId: 'foundDefault', |
| 104 | + node: key, |
| 105 | + }); |
| 106 | + |
| 107 | + break; |
| 108 | + } |
| 109 | + } |
| 110 | + } |
| 111 | + } |
| 112 | + }, |
| 113 | +}; |
0 commit comments