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.
33 lines
886 B
33 lines
886 B
/** |
|
* @author Yosuke Ota |
|
* See LICENSE file in root directory for full license. |
|
*/ |
|
'use strict' |
|
|
|
const utils = require('../utils') |
|
const slotScopeAttribute = require('./syntaxes/slot-scope-attribute') |
|
|
|
module.exports = { |
|
meta: { |
|
type: 'suggestion', |
|
docs: { |
|
description: |
|
'disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+)', |
|
categories: ['vue3-essential'], |
|
url: 'https://eslint.vuejs.org/rules/no-deprecated-slot-scope-attribute.html' |
|
}, |
|
fixable: 'code', |
|
schema: [], |
|
messages: { |
|
forbiddenSlotScopeAttribute: '`slot-scope` are deprecated.' |
|
} |
|
}, |
|
/** @param {RuleContext} context */ |
|
create(context) { |
|
const templateBodyVisitor = slotScopeAttribute.createTemplateBodyVisitor( |
|
context, |
|
{ fixToUpgrade: true } |
|
) |
|
return utils.defineTemplateBodyVisitor(context, templateBodyVisitor) |
|
} |
|
}
|
|
|