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.
42 lines
1.1 KiB
42 lines
1.1 KiB
/** |
|
* @author Yosuke Ota |
|
* See LICENSE file in root directory for full license. |
|
*/ |
|
'use strict' |
|
|
|
const utils = require('../utils') |
|
const slotAttribute = require('./syntaxes/slot-attribute') |
|
|
|
module.exports = { |
|
meta: { |
|
type: 'suggestion', |
|
docs: { |
|
description: 'disallow deprecated `slot` attribute (in Vue.js 2.6.0+)', |
|
categories: ['vue3-essential'], |
|
url: 'https://eslint.vuejs.org/rules/no-deprecated-slot-attribute.html' |
|
}, |
|
// eslint-disable-next-line eslint-plugin/require-meta-fixable -- fixer is not recognized |
|
fixable: 'code', |
|
schema: [ |
|
{ |
|
type: 'object', |
|
properties: { |
|
ignore: { |
|
type: 'array', |
|
items: { type: 'string' }, |
|
uniqueItems: true |
|
} |
|
}, |
|
additionalProperties: false |
|
} |
|
], |
|
messages: { |
|
forbiddenSlotAttribute: '`slot` attributes are deprecated.' |
|
} |
|
}, |
|
/** @param {RuleContext} context */ |
|
create(context) { |
|
const templateBodyVisitor = slotAttribute.createTemplateBodyVisitor(context) |
|
return utils.defineTemplateBodyVisitor(context, templateBodyVisitor) |
|
} |
|
}
|
|
|