51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
/**
|
|
* @fileoverview enforce that each component should be in its own file
|
|
* @author Armano
|
|
*/
|
|
'use strict'
|
|
const utils = require('../utils')
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
// ------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
type: 'suggestion',
|
|
docs: {
|
|
description: 'enforce that each component should be in its own file',
|
|
categories: ['vue3-strongly-recommended', 'strongly-recommended'],
|
|
url: 'https://eslint.vuejs.org/rules/one-component-per-file.html'
|
|
},
|
|
fixable: null,
|
|
schema: [],
|
|
messages: {
|
|
toManyComponents: 'There is more than one component in this file.'
|
|
}
|
|
},
|
|
/** @param {RuleContext} context */
|
|
create(context) {
|
|
/** @type {ObjectExpression[]} */
|
|
const components = []
|
|
|
|
return Object.assign(
|
|
{},
|
|
utils.executeOnVueComponent(context, (node) => {
|
|
components.push(node)
|
|
}),
|
|
{
|
|
'Program:exit'() {
|
|
if (components.length > 1) {
|
|
for (const node of components) {
|
|
context.report({
|
|
node,
|
|
messageId: 'toManyComponents'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
)
|
|
}
|
|
}
|