## no-specific-identifiers-in-methods
在特定方法中禁止使用某些特定变量/函数/对象

## 选项

此规则支持自定义属性列表，例如：

```json
"eslint-plugin-core/no-specific-identifiers-in-methods": ["warn", 
    {
        targetMethods: ['computed', 'watch'],
        forbiddenGlobals: ['setTimeout']
    }
]
```

级别: `warn`

❌错误示例：
```vue
<script>
export default {
    computed: {
        aaa(){
            setTimeout(() => {}, 0)
        }
    }
}
</script>
```

