This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
2020-11-01 22:46:04 +00:00

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'
})
}
}
}
}
)
}
}