1"use strict"; 2 3const BABEL_VISITOR_KEYS = require("@babel/types").VISITOR_KEYS; 4const ESLINT_VISITOR_KEYS = require("eslint-visitor-keys").KEYS; 5 6module.exports = Object.assign( 7 { 8 Literal: ESLINT_VISITOR_KEYS.Literal, 9 MethodDefinition: ["decorators"].concat( 10 ESLINT_VISITOR_KEYS.MethodDefinition 11 ), 12 Property: ["decorators"].concat(ESLINT_VISITOR_KEYS.Property), 13 }, 14 BABEL_VISITOR_KEYS 15); 16