23 lines
485 B
JavaScript
23 lines
485 B
JavaScript
/**
|
|
* @author Yosuke Ota
|
|
* See LICENSE file in root directory for full license.
|
|
*/
|
|
'use strict'
|
|
|
|
const utils = require('../../utils/index')
|
|
|
|
module.exports = {
|
|
supported: '>=3.4.0',
|
|
/** @param {RuleContext} context @returns {RuleListener} */
|
|
createScriptVisitor(context) {
|
|
return utils.defineScriptSetupVisitor(context, {
|
|
onDefineModelEnter(node) {
|
|
context.report({
|
|
node,
|
|
messageId: 'forbiddenDefineModel'
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|