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.
53 lines
1.4 KiB
53 lines
1.4 KiB
3 years ago
|
/**
|
||
|
* @author Yosuke Ota
|
||
|
* See LICENSE file in root directory for full license.
|
||
|
*/
|
||
|
'use strict'
|
||
|
|
||
|
const utils = require('../utils')
|
||
|
|
||
|
// ------------------------------------------------------------------------------
|
||
|
// Rule Definition
|
||
|
// ------------------------------------------------------------------------------
|
||
|
|
||
|
module.exports = {
|
||
|
meta: {
|
||
|
type: 'problem',
|
||
|
docs: {
|
||
|
description:
|
||
|
'disallow using deprecated `Vue.config.keyCodes` (in Vue.js 3.0.0+)',
|
||
|
categories: ['vue3-essential'],
|
||
|
url: 'https://eslint.vuejs.org/rules/no-deprecated-vue-config-keycodes.html'
|
||
|
},
|
||
|
fixable: null,
|
||
|
schema: [],
|
||
|
messages: {
|
||
|
unexpected: '`Vue.config.keyCodes` are deprecated.'
|
||
|
}
|
||
|
},
|
||
|
/** @param {RuleContext} context */
|
||
|
create(context) {
|
||
|
return {
|
||
|
/** @param {MemberExpression} node */
|
||
|
"MemberExpression[property.type='Identifier'][property.name='keyCodes']"(
|
||
|
node
|
||
|
) {
|
||
|
const config = utils.skipChainExpression(node.object)
|
||
|
if (
|
||
|
config.type !== 'MemberExpression' ||
|
||
|
config.property.type !== 'Identifier' ||
|
||
|
config.property.name !== 'config' ||
|
||
|
config.object.type !== 'Identifier' ||
|
||
|
config.object.name !== 'Vue'
|
||
|
) {
|
||
|
return
|
||
|
}
|
||
|
context.report({
|
||
|
node,
|
||
|
messageId: 'unexpected'
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|