first commit
This commit is contained in:
30
app_vue/node_modules/eslint-plugin-vue/lib/rules/no-deprecated-scope-attribute.js
generated
vendored
Normal file
30
app_vue/node_modules/eslint-plugin-vue/lib/rules/no-deprecated-scope-attribute.js
generated
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
/**
|
||||
* @author Yosuke Ota
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
'use strict'
|
||||
|
||||
const utils = require('../utils')
|
||||
const scopeAttribute = require('./syntaxes/scope-attribute')
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
type: 'suggestion',
|
||||
docs: {
|
||||
description: 'disallow deprecated `scope` attribute (in Vue.js 2.5.0+)',
|
||||
categories: ['vue3-essential'],
|
||||
url: 'https://eslint.vuejs.org/rules/no-deprecated-scope-attribute.html'
|
||||
},
|
||||
fixable: 'code',
|
||||
schema: [],
|
||||
messages: {
|
||||
forbiddenScopeAttribute: '`scope` attributes are deprecated.'
|
||||
}
|
||||
},
|
||||
/** @param {RuleContext} context */
|
||||
create(context) {
|
||||
const templateBodyVisitor =
|
||||
scopeAttribute.createTemplateBodyVisitor(context)
|
||||
return utils.defineTemplateBodyVisitor(context, templateBodyVisitor)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user