forked from jchomaz/Vulture
Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
24
VApp/node_modules/eslint-plugin-vue/lib/rules/no-invalid-model-keys.js
generated
vendored
Normal file
24
VApp/node_modules/eslint-plugin-vue/lib/rules/no-invalid-model-keys.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
'use strict'
|
||||
|
||||
const baseRule = require('./valid-model-definition')
|
||||
|
||||
module.exports = {
|
||||
// eslint-disable-next-line eslint-plugin/prefer-message-ids
|
||||
meta: {
|
||||
...baseRule.meta,
|
||||
// eslint-disable-next-line eslint-plugin/meta-property-ordering
|
||||
type: baseRule.meta.type,
|
||||
docs: {
|
||||
description: baseRule.meta.docs.description,
|
||||
categories: undefined,
|
||||
url: 'https://eslint.vuejs.org/rules/no-invalid-model-keys.html'
|
||||
},
|
||||
schema: [],
|
||||
deprecated: true,
|
||||
replacedBy: ['valid-model-definition']
|
||||
},
|
||||
/** @param {RuleContext} context */
|
||||
create(context) {
|
||||
return baseRule.create(context)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user